]> Cypherpunks repositories - gostls13.git/commitdiff
unicode: remove an extra space
authorOling Cat <olingcat@gmail.com>
Tue, 19 Mar 2013 17:48:07 +0000 (13:48 -0400)
committerRuss Cox <rsc@golang.org>
Tue, 19 Mar 2013 17:48:07 +0000 (13:48 -0400)
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/7856044

src/pkg/unicode/maketables.go
src/pkg/unicode/tables.go

index 53d8b967e9518ce67cda5131bfb268ef5b0d1de6..e5ed08b23779270d00da66142fdbc128392c8b61 100644 (file)
@@ -440,7 +440,7 @@ func printCategories() {
                        varDecl = "\tLetter = _L;       // Letter/L is the set of Unicode letters, category L.\n"
                        varDecl += "\tL = _L\n"
                case "M":
-                       varDecl = "\tMark = _M; // Mark/M is the set of Unicode mark characters, category  M.\n"
+                       varDecl = "\tMark = _M; // Mark/M is the set of Unicode mark characters, category M.\n"
                        varDecl += "\tM = _M\n"
                case "N":
                        varDecl = "\tNumber = _N;       // Number/N is the set of Unicode number characters, category N.\n"
index 36b5a3115bfefb80d8571daa0368ba7d0d6b7396..939c41dc5106cedb2320bae6312de685dd021590 100644 (file)
@@ -2864,7 +2864,7 @@ var (
        Lo     = _Lo // Lo is the set of Unicode characters in category Lo.
        Lower  = _Ll // Lower is the set of Unicode lower case letters.
        Ll     = _Ll // Ll is the set of Unicode characters in category Ll.
-       Mark   = _M  // Mark/M is the set of Unicode mark characters, category  M.
+       Mark   = _M  // Mark/M is the set of Unicode mark characters, category M.
        M      = _M
        Mc     = _Mc // Mc is the set of Unicode characters in category Mc.
        Me     = _Me // Me is the set of Unicode characters in category Me.