From: Robert Griesemer Date: Tue, 8 Jul 2008 23:01:10 +0000 (-0700) Subject: - added missing keyword 'iota' X-Git-Tag: weekly.2009-11-06~3543 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=6def94ad83bb50b4c4afb2df458b7147a7e47660;p=gostls13.git - added missing keyword 'iota' SVN=126397 --- diff --git a/doc/go_lang.txt b/doc/go_lang.txt index 73acfb76bc..2f102c06cc 100644 --- a/doc/go_lang.txt +++ b/doc/go_lang.txt @@ -313,14 +313,14 @@ type, a function, etc. An identifier must not be a reserved word. Reserved words ---- - break fallthrough import return - case false interface select + break fallthrough interface return + case false iota select const for map struct chan func new switch continue go nil true default goto package type else if range var - export + export import TODO: "len" is currently also a reserved word - it shouldn't be.