aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/unicode
diff options
context:
space:
mode:
authorOling Cat <olingcat@gmail.com>2013-03-19 13:48:07 -0400
committerRuss Cox <rsc@golang.org>2013-03-19 13:48:07 -0400
commita88d82813dfa3f56a6df2ecd25eaba480ef7e58e (patch)
tree24e270bd0d9f38c125b2a701d179d034b95b9716 /src/pkg/unicode
parent4aeb0fc0a4dc800c57ed9f9d457de74d1158700a (diff)
downloadgo-a88d82813dfa3f56a6df2ecd25eaba480ef7e58e.tar.xz
unicode: remove an extra space
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/7856044
Diffstat (limited to 'src/pkg/unicode')
-rw-r--r--src/pkg/unicode/maketables.go2
-rw-r--r--src/pkg/unicode/tables.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/unicode/maketables.go b/src/pkg/unicode/maketables.go
index 53d8b967e9..e5ed08b237 100644
--- a/src/pkg/unicode/maketables.go
+++ b/src/pkg/unicode/maketables.go
@@ -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"
diff --git a/src/pkg/unicode/tables.go b/src/pkg/unicode/tables.go
index 36b5a3115b..939c41dc51 100644
--- a/src/pkg/unicode/tables.go
+++ b/src/pkg/unicode/tables.go
@@ -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.