aboutsummaryrefslogtreecommitdiff
path: root/src/html/escape.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/html/escape.go')
-rw-r--r--src/html/escape.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/html/escape.go b/src/html/escape.go
index 71906ac586..8dd1f4ad2f 100644
--- a/src/html/escape.go
+++ b/src/html/escape.go
@@ -181,7 +181,7 @@ func EscapeString(s string) string {
// UnescapeString unescapes entities like "&lt;" to become "<". It unescapes a
// larger range of entities than EscapeString escapes. For example, "&aacute;"
-// unescapes to "á", as does "&#225;" and "&xE1;".
+// unescapes to "á", as does "&#225;" and "&#xE1;".
// UnescapeString(EscapeString(s)) == s always holds, but the converse isn't
// always true.
func UnescapeString(s string) string {