From: Robert Griesemer Date: Thu, 3 Feb 2011 20:27:41 +0000 (-0800) Subject: go spec: move to Unicode 6.0 X-Git-Tag: weekly.2011-02-15~103 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=838b5ad9d6ead0c4348197978fb85647a7019013;p=gostls13.git go spec: move to Unicode 6.0 R=r, r2 CC=golang-dev https://golang.org/cl/4128055 --- diff --git a/doc/go_spec.html b/doc/go_spec.html index 047710b6cf..9784222195 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -104,12 +104,12 @@ 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" */ .
-unicode_digit  = /* a Unicode code point classified as "Digit" */ .
+unicode_digit  = /* a Unicode code point classified as "Decimal Digit" */ .
 

-In The Unicode Standard 5.2, -Section 4.5 General Category-Normative +In The Unicode Standard 6.0, +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.