Skip to content

Commit 598c694

Browse files
committed
Fix misspelled "banana"
1 parent b8840aa commit 598c694

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/range/range.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func main() {
2929
}
3030

3131
// `range` on map iterates over key/value pairs.
32-
kvs := map[string]string{"a": "apple", "b": "bannana"}
32+
kvs := map[string]string{"a": "apple", "b": "banana"}
3333
for k, v := range kvs {
3434
fmt.Printf("%s -> %s\n", k, v)
3535
}

0 commit comments

Comments
 (0)