examples contradicted text: '\octal' and '\hex' are fixed size

SVN=112150
This commit is contained in:
Rob Pike 2008-03-11 20:40:20 -07:00
parent 0d1e90be17
commit 8152cb8a71

View file

@ -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
----