From f29013d19b79c960030e528b9106f8d0273cc21e Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Tue, 16 Apr 2013 13:59:10 -0700 Subject: [PATCH] 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 --- doc/effective_go.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/effective_go.html b/doc/effective_go.html index 1da9c4ef16a..bdbef68c7cd 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.