diff --git a/src/10-for.go b/src/10-for.go index cd47272..eecebe0 100644 --- a/src/10-for.go +++ b/src/10-for.go @@ -13,7 +13,7 @@ func main() { fmt.Println(j) // line. } - for { // `for` without a condition will loop until you - return + for { // `for` without a condition will loop until you` + return // return`. } } // We'll see other `for` forms latter.