From: Scott Lawrence Date: Sun, 4 Mar 2012 23:58:43 +0000 (+1100) Subject: html/template: fix comment typo X-Git-Tag: weekly.2012-03-04~8 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=30f9c99e3e96c22c57a5ef120d442a1d186a4ade;p=gostls13.git html/template: fix comment typo R=golang-dev, r CC=golang-dev https://golang.org/cl/5730051 --- diff --git a/src/pkg/html/template/html.go b/src/pkg/html/template/html.go index 7b77d6531a..36c88e23e6 100644 --- a/src/pkg/html/template/html.go +++ b/src/pkg/html/template/html.go @@ -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)