From 30f9c99e3e96c22c57a5ef120d442a1d186a4ade Mon Sep 17 00:00:00 2001 From: Scott Lawrence Date: Mon, 5 Mar 2012 10:58:43 +1100 Subject: [PATCH] html/template: fix comment typo R=golang-dev, r CC=golang-dev https://golang.org/cl/5730051 --- src/pkg/html/template/html.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.48.1