From: Rob Pike Date: Thu, 16 Apr 2009 04:49:50 +0000 (-0700) Subject: fix one word for consistency. X-Git-Tag: weekly.2009-11-06~1819 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=55faa5f10eb887dfdd4eb6f525e059fc0047f6a1;p=gostls13.git fix one word for consistency. R=gri OCL=27543 CL=27543 --- diff --git a/doc/go_spec.html b/doc/go_spec.html index e788050b1c..01e6e484bf 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -3475,7 +3475,7 @@ must be assignment compatible to the iteration variables.

For strings, the "range" clause iterates over the Unicode code points in the string. On successive iterations, the index variable will be the -position of successive UTF-8-encoded code points in the string, and +index of successive UTF-8-encoded code points in the string, and the second variable, of type int, will be the value of the corresponding code point. If the iteration encounters an invalid UTF-8 sequence, the second variable will be 0xFFFD,