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.