]> Cypherpunks repositories - gostls13.git/commitdiff
capital_letter was never used
authorRobert Griesemer <gri@golang.org>
Sat, 11 Jul 2009 01:21:07 +0000 (18:21 -0700)
committerRobert Griesemer <gri@golang.org>
Sat, 11 Jul 2009 01:21:07 +0000 (18:21 -0700)
R=rsc
DELTA=2  (0 added, 1 deleted, 1 changed)
OCL=31472
CL=31477

doc/go_spec.html

index 451baedf72c1e9d5ce37c5323496a9a6f0d15846..ef86dda2cfd9c26a2d5295afe7c830eb70e195d6 100644 (file)
@@ -101,7 +101,6 @@ The following terms are used to denote specific Unicode character classes:
 <pre class="ebnf">
 unicode_char   = /* an arbitrary Unicode code point */ .
 unicode_letter = /* a Unicode code point classified as "Letter" */ .
-capital_letter = /* a Unicode code point classified as "Letter, uppercase" */ .
 unicode_digit  = /* a Unicode code point classified as "Digit" */ .
 </pre>
 
@@ -1329,7 +1328,7 @@ Some identifiers are <i>exported</i> and can be referenced using
 If an identifier satisfies these two conditions:
 </p>
 <ol>
-<li>the first character of the identifier's name is a Unicode upper case letter;
+<li>the first character of the identifier's name is a Unicode upper case letter (Unicode class "Lu");
 <li>the identifier is declared at the package level or is a field or method of a type
 declared at the top level;
 </ol>