mirror of
https://github.com/golang/go
synced 2024-11-22 07:04:40 -07:00
capital_letter was never used
R=rsc DELTA=2 (0 added, 1 deleted, 1 changed) OCL=31472 CL=31477
This commit is contained in:
parent
92e925778e
commit
7c06f285d0
@ -101,7 +101,6 @@ The following terms are used to denote specific Unicode character classes:
|
|||||||
<pre class="ebnf">
|
<pre class="ebnf">
|
||||||
unicode_char = /* an arbitrary Unicode code point */ .
|
unicode_char = /* an arbitrary Unicode code point */ .
|
||||||
unicode_letter = /* a Unicode code point classified as "Letter" */ .
|
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" */ .
|
unicode_digit = /* a Unicode code point classified as "Digit" */ .
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
@ -1329,7 +1328,7 @@ Some identifiers are <i>exported</i> and can be referenced using
|
|||||||
If an identifier satisfies these two conditions:
|
If an identifier satisfies these two conditions:
|
||||||
</p>
|
</p>
|
||||||
<ol>
|
<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
|
<li>the identifier is declared at the package level or is a field or method of a type
|
||||||
declared at the top level;
|
declared at the top level;
|
||||||
</ol>
|
</ol>
|
||||||
|
Loading…
Reference in New Issue
Block a user