From: Robert Griesemer Date: Wed, 28 Jun 2017 17:15:24 +0000 (-0700) Subject: spec: minor grammar fix X-Git-Tag: go1.9rc1~144 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=4e9c86ab8e9faf6da9864db6ad81d396f3f55379;p=gostls13.git spec: minor grammar fix Fixes #20830. Change-Id: I18178064c955ad8d259df05ee954075ae42909b0 Reviewed-on: https://go-review.googlesource.com/47030 Reviewed-by: Brad Fitzpatrick --- diff --git a/doc/go_spec.html b/doc/go_spec.html index 9ab0804609..6642869d0c 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1,6 +1,6 @@ @@ -5025,8 +5025,8 @@ a single byte in the string.
  • The iteration order over maps is not specified and is not guaranteed to be the same from one iteration to the next. -If map entries that have not yet been reached are removed during iteration, -the corresponding iteration values will not be produced. If map entries are +If a map entry that has not yet been reached is removed during iteration, +the corresponding iteration value will not be produced. If a map entry is created during iteration, that entry may be produced during the iteration or may be skipped. The choice may vary for each entry created and from one iteration to the next.