From 7c06f285d06f8c76d58194333b29748a58c2a642 Mon Sep 17 00:00:00 2001
From: Robert Griesemer
Date: Fri, 10 Jul 2009 18:21:07 -0700
Subject: [PATCH] capital_letter was never used
R=rsc
DELTA=2 (0 added, 1 deleted, 1 changed)
OCL=31472
CL=31477
---
doc/go_spec.html | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
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;
--
2.48.1