We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f46f423 commit 09dbf3dCopy full SHA for 09dbf3d
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