diff --git a/tutorials/learn-golang.org/en/Loops.md b/tutorials/learn-golang.org/en/Loops.md index 26959130d..54ae0ef79 100644 --- a/tutorials/learn-golang.org/en/Loops.md +++ b/tutorials/learn-golang.org/en/Loops.md @@ -19,7 +19,7 @@ The loop will stop iterating once the boolean condition evaluates to false. Examples -------- -The following code prints numbers from 1 to 9. +The following code prints numbers from 0 to 9. package main @@ -102,4 +102,4 @@ Solution sum += i } fmt.Println(sum) - } \ No newline at end of file + }