From 6b76cd07e8409122e7ba3f5624e4be05bb8c1196 Mon Sep 17 00:00:00 2001 From: Teascade Date: Sat, 26 Aug 2017 00:34:32 +0000 Subject: [PATCH] Fixed a mispell --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2d3f8fd..79e87ae 100644 --- a/README.md +++ b/README.md @@ -221,7 +221,7 @@ while (true == false) { Defines a loop very similar to while, but which parameters inside the parenthesis consists of three parts separated by semicolons`;`. ``` for (let i = 0; i < 10; i++) { - // Loop through 0 to 10 + // Loop through 0 to 9 } ```