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 } ```