From 8152cb8a712ab0d71919c1dd215cd0f5c529bf37 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Tue, 11 Mar 2008 20:40:20 -0700 Subject: [PATCH] examples contradicted text: '\octal' and '\hex' are fixed size SVN=112150 --- doc/go_lang.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/go_lang.txt b/doc/go_lang.txt index 75a1a91c522..b0d717e0ec9 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 ----