From 8db6370d786337842aa6a86621817c6880f4b093 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Tue, 10 Nov 2009 18:24:06 -0800 Subject: [PATCH] fix final program to have Html->HTML R=rsc CC=go-dev https://golang.org/cl/152050 --- doc/effective_go.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/effective_go.html b/doc/effective_go.html index 5f1bf31bbf..e8acf08dfb 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -2394,7 +2394,7 @@ import ( var addr = flag.String("addr", ":1718", "http service address") // Q=17, R=18 var fmap = template.FormatterMap{ - "html": template.HtmlFormatter, + "html": template.HTMLFormatter, "url+html": UrlHtmlFormatter, } var templ = template.MustParse(templateStr, fmap) @@ -2413,7 +2413,7 @@ func QR(c *http.Conn, req *http.Request) { } func UrlHtmlFormatter(w io.Writer, v interface{}, fmt string) { - template.HtmlEscape(w, strings.Bytes(http.URLEscape(v.(string)))); + template.HTMLEscape(w, strings.Bytes(http.URLEscape(v.(string)))); } -- 2.50.0