Skip to content

Commit a44c425

Browse files
committedApr 10, 2016
html: fix typo in UnescapeString string docs
Fixes #15221 Change-Id: I9e927a2f604213338b4572f1a32d0247c58bdc60 Reviewed-on: https://go-review.googlesource.com/21798 Reviewed-by: Ian Lance Taylor <iant@golang.org>
1 parent a56f5a0 commit a44c425

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/html/escape.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ func EscapeString(s string) string {
181181

182182
// UnescapeString unescapes entities like "&lt;" to become "<". It unescapes a
183183
// larger range of entities than EscapeString escapes. For example, "&aacute;"
184-
// unescapes to "á", as does "&#225;" and "&xE1;".
184+
// unescapes to "á", as does "&#225;" and "&#xE1;".
185185
// UnescapeString(EscapeString(s)) == s always holds, but the converse isn't
186186
// always true.
187187
func UnescapeString(s string) string {

0 commit comments

Comments
 (0)