summaryrefslogtreecommitdiff
path: root/libgo/go/exp/html/escape.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/exp/html/escape.go')
-rw-r--r--libgo/go/exp/html/escape.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/exp/html/escape.go b/libgo/go/exp/html/escape.go
index 7827dc2d506..75bddff094f 100644
--- a/libgo/go/exp/html/escape.go
+++ b/libgo/go/exp/html/escape.go
@@ -10,7 +10,7 @@ import (
"unicode/utf8"
)
-// These replacements permit compatibility with old numeric entities that
+// These replacements permit compatibility with old numeric entities that
// assumed Windows-1252 encoding.
// http://www.whatwg.org/specs/web-apps/current-work/multipage/tokenization.html#consume-a-character-reference
var replacementTable = [...]rune{
@@ -46,7 +46,7 @@ var replacementTable = [...]rune{
'\u009D',
'\u017E',
'\u0178', // Last entry is 0x9F.
- // 0x00->'\uFFFD' is handled programmatically.
+ // 0x00->'\uFFFD' is handled programmatically.
// 0x0D->'\u000D' is a no-op.
}