From: Rob Pike Date: Tue, 16 Apr 2013 20:59:10 +0000 (-0700) Subject: doc/effective_go: another doubled word X-Git-Tag: go1.1rc2~90 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f29013d19b79c960030e528b9106f8d0273cc21e;p=gostls13.git doc/effective_go: another doubled word It's clear that that should never happen. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/8798045 --- diff --git a/doc/effective_go.html b/doc/effective_go.html index 1da9c4ef16..bdbef68c7c 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -1570,7 +1570,7 @@ _, present := timeZone[tz]

To delete a map entry, use the delete built-in function, whose arguments are the map and the key to be deleted. -It's safe to do this this even if the key is already absent +It's safe to do this even if the key is already absent from the map.