We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f46f423 + 09dbf3d commit 0440f3bCopy full SHA for 0440f3b
en/02.3.md
@@ -105,7 +105,7 @@ There are two important operations in loops which are `break` and `continue`. `b
105
// break prints 10、9、8、7、6
106
// continue prints 10、9、8、7、6、4、3、2、1
107
```
108
-`for` can read data from `slice` and `map` when it is used together with `range`.
+`for` can read data from `array`, `slice`, `map` and `string` when it is used together with `range`.
109
```Go
110
for k,v:=range map {
111
fmt.Println("map's key:",k)
0 commit comments