From: Rob Pike Date: Wed, 12 Mar 2008 03:40:20 +0000 (-0700) Subject: examples contradicted text: '\octal' and '\hex' are fixed size X-Git-Tag: weekly.2009-11-06~3826 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=8152cb8a712ab0d71919c1dd215cd0f5c529bf37;p=gostls13.git examples contradicted text: '\octal' and '\hex' are fixed size SVN=112150 --- diff --git a/doc/go_lang.txt b/doc/go_lang.txt index 75a1a91c52..b0d717e0ec 100644 --- a/doc/go_lang.txt +++ b/doc/go_lang.txt @@ -432,10 +432,10 @@ quotes. [Note: the Unicode doesn't look right in the browser.] 'ä' '本' '\t' - '\0' - '\07' - '\0377' - '\x7' + '\000' + '\007' + '\377' + '\x07' '\xff' '\u12e4' '\U00101234' @@ -1507,7 +1507,7 @@ Program A program is package clause, optionally followed by import declarations, followed by a series of declarations. -Program = PackageClause { ImportDecl } { Declaration } . + Program = PackageClause { ImportDecl } { Declaration } . TODO ----