From: Robert Griesemer
Date: Sat, 11 Jul 2009 01:21:07 +0000 (-0700)
Subject: capital_letter was never used
X-Git-Tag: weekly.2009-11-06~1180
X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7c06f285d06f8c76d58194333b29748a58c2a642;p=gostls13.git
capital_letter was never used
R=rsc
DELTA=2 (0 added, 1 deleted, 1 changed)
OCL=31472
CL=31477
---
diff --git a/doc/go_spec.html b/doc/go_spec.html
index 451baedf72..ef86dda2cf 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:
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" */ .
@@ -1329,7 +1328,7 @@ Some identifiers are exported and can be referenced using
If an identifier satisfies these two conditions:
-- the first character of the identifier's name is a Unicode upper case letter;
+
- the first character of the identifier's name is a Unicode upper case letter (Unicode class "Lu");
- the identifier is declared at the package level or is a field or method of a type
declared at the top level;