diff --git a/doc/go_spec.html b/doc/go_spec.html index fe35aaccb4..6b6e75c7c9 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1,6 +1,6 @@ @@ -101,15 +101,14 @@ The following terms are used to denote specific Unicode character classes: newline = /* the Unicode code point U+000A */ . unicode_char = /* an arbitrary Unicode code point except newline */ . unicode_letter = /* a Unicode code point classified as "Letter" */ . -unicode_digit = /* a Unicode code point classified as "Decimal Digit" */ . +unicode_digit = /* a Unicode code point classified as "Number, decimal digit" */ .
-In The Unicode Standard 6.3, -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. +In The Unicode Standard 8.0, +Section 4.5 "General Category" defines a set of character categories. +Go treats all characters in any of the Letter categories Lu, Ll, Lt, Lm, or Lo +as Unicode letters, and those in the Number category Nd as Unicode digits.