Commit 30f9c99e authored by Scott Lawrence's avatar Scott Lawrence Committed by Rob Pike

html/template: fix comment typo

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5730051
parent bc1e8900
......@@ -134,7 +134,7 @@ var htmlNospaceNormReplacementTable = []string{
'`': "`",
}
// htmlReplacer returns s with runes replaced acccording to replacementTable
// htmlReplacer returns s with runes replaced according to replacementTable
// and when badRunes is true, certain bad runes are allowed through unescaped.
func htmlReplacer(s string, replacementTable []string, badRunes bool) string {
written, b := 0, new(bytes.Buffer)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment