diff --git a/README.md b/README.md index 4ee936c..662bd90 100644 --- a/README.md +++ b/README.md @@ -228,4 +228,4 @@ for (let i = 0; i < 10; i++) { - The first part (`let i = 0` in this example) is the beginning-expression. It can be any expression, and it will be executed as the loop begins weather or not the scope inside the loop will be accessed. - The second part (`i < 10` in this example) is the condition defining weather the loop-scope will be accessed or not. - The third part (`i++` in this example) is the step-expression, which will be executed after each execution of the loop-scope. -- Otherwise `for` is identical to [`while`]("while") +- Otherwise `for` is identical to [`while`](#while)