Fix misspelled "indicates"

This commit is contained in:
Nicolas Kaiser 2012-11-23 16:41:40 +01:00
parent b8840aa19d
commit d4c1a81a03

View File

@ -34,7 +34,7 @@ func main() {
fmt.Println("map:", m)
// The optional second return value when getting a
// value from a map indiciates if the key was present
// value from a map indicates if the key was present
// in the map. This can be used to disambiguate
// between missing keys and keys with zero values
// like `0` or `""`.