From 6def94ad83bb50b4c4afb2df458b7147a7e47660 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Tue, 8 Jul 2008 16:01:10 -0700 Subject: [PATCH] - added missing keyword 'iota' SVN=126397 --- doc/go_lang.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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. -- 2.48.1