We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8840aa commit 598c694Copy full SHA for 598c694
examples/range/range.go
@@ -29,7 +29,7 @@ func main() {
29
}
30
31
// `range` on map iterates over key/value pairs.
32
- kvs := map[string]string{"a": "apple", "b": "bannana"}
+ kvs := map[string]string{"a": "apple", "b": "banana"}
33
for k, v := range kvs {
34
fmt.Printf("%s -> %s\n", k, v)
35
0 commit comments