diff --git a/doc/go_tutorial.html b/doc/go_tutorial.html
index 9ed408d3455..f3715f3bdfb 100644
--- a/doc/go_tutorial.html
+++ b/doc/go_tutorial.html
@@ -355,7 +355,7 @@ By the way, another thing that works on strings, arrays, slices, maps
and channels is the range
clause on for
loops. Instead of writing
- for i := 0; i < len(a); i++ { ... } + for i := 0; i < len(a); i++ { ... }
to loop over the elements of a slice (or map or ...) , we could write diff --git a/doc/go_tutorial.txt b/doc/go_tutorial.txt index dae3c6815e9..7c0ffac80c9 100644 --- a/doc/go_tutorial.txt +++ b/doc/go_tutorial.txt @@ -278,7 +278,7 @@ slices, maps, and channels. By the way, another thing that works on strings, arrays, slices, maps and channels is the "range" clause on "for" loops. Instead of writing - for i := 0; i < len(a); i++ { ... } + for i := 0; i < len(a); i++ { ... } to loop over the elements of a slice (or map or ...) , we could write