1
0
mirror of https://github.com/golang/go synced 2024-11-21 23:34:42 -07:00

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' '\t'
'\0' '\000'
'\07' '\007'
'\0377' '\377'
'\x7' '\x07'
'\xff' '\xff'
'\u12e4' '\u12e4'
'\U00101234' '\U00101234'
@ -1507,7 +1507,7 @@ Program
A program is package clause, optionally followed by import declarations, A program is package clause, optionally followed by import declarations,
followed by a series of declarations. followed by a series of declarations.
Program = PackageClause { ImportDecl } { Declaration } . Program = PackageClause { ImportDecl } { Declaration } .
TODO TODO
---- ----