From a58c9066e6618968fd0a0ced0d66e9b96aaf1267 Mon Sep 17 00:00:00 2001 From: JesseZhang97 Date: Sun, 20 Jun 2021 19:18:27 +0800 Subject: [PATCH] Fix typo in 08_day_objects.md --- 08_Day_Objects/08_day_objects.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/08_Day_Objects/08_day_objects.md b/08_Day_Objects/08_day_objects.md index de91f2f..6765257 100644 --- a/08_Day_Objects/08_day_objects.md +++ b/08_Day_Objects/08_day_objects.md @@ -163,7 +163,7 @@ if (true){ for(let i = 0; i < 3; i++){ console.log(i) // 1, 2, 3 } -// console.log(i), Uncaught ReferenceError: gravity is not defined +// console.log(i), Uncaught ReferenceError: i is not defined ```