diff options
author | Robert Griesemer <gri@golang.org> | 2009-07-10 18:21:07 -0700 |
---|---|---|
committer | Robert Griesemer <gri@golang.org> | 2009-07-10 18:21:07 -0700 |
commit | bdc35cf90f75f401fb7dd9df9f4c39af0b5e689e (patch) | |
tree | 55a5dea58064fcd1878ee500fc02409eb5d07174 | |
parent | 822b5b9c45abbaec87611e13ee8a1171b4ad3eab (diff) | |
download | golang-bdc35cf90f75f401fb7dd9df9f4c39af0b5e689e.tar.gz |
capital_letter was never used
R=rsc
DELTA=2 (0 added, 1 deleted, 1 changed)
OCL=31472
CL=31477
-rw-r--r-- | doc/go_spec.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/go_spec.html b/doc/go_spec.html index 451baedf7..ef86dda2c 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -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> |