]> Cypherpunks repositories - gostls13.git/commitdiff
go spec: move to Unicode 6.0
authorRobert Griesemer <gri@golang.org>
Thu, 3 Feb 2011 20:27:41 +0000 (12:27 -0800)
committerRobert Griesemer <gri@golang.org>
Thu, 3 Feb 2011 20:27:41 +0000 (12:27 -0800)
R=r, r2
CC=golang-dev
https://golang.org/cl/4128055

doc/go_spec.html

index 047710b6cf527eda043d77e4424013b153778590..9784222195d1a51cc25288910421fe139fa9f0c0 100644 (file)
@@ -104,12 +104,12 @@ 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" */ .
-unicode_digit  = /* a Unicode code point classified as "Digit" */ .
+unicode_digit  = /* a Unicode code point classified as "Decimal Digit" */ .
 </pre>
 
 <p>
-In <a href="http://www.unicode.org/versions/Unicode5.2.0/">The Unicode Standard 5.2</a>,
-Section 4.5 General Category-Normative
+In <a href="http://www.unicode.org/versions/Unicode6.0.0/">The Unicode Standard 6.0</a>,
+Section 4.5 "General Category"
 defines a set of character categories.  Go treats
 those characters in category Lu, Ll, Lt, Lm, or Lo as Unicode letters,
 and those in category Nd as Unicode digits.