Commit 701fb580 authored by Rob Pike's avatar Rob Pike

html/template: replace obsolete reference to template.Set

Fixes #3053.

R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/5656094
parent 292bd04a
...@@ -17,11 +17,11 @@ Introduction ...@@ -17,11 +17,11 @@ Introduction
This package wraps package text/template so you can share its template API This package wraps package text/template so you can share its template API
to parse and execute HTML templates safely. to parse and execute HTML templates safely.
set, err := new(template.Set).Parse(...) tmpl, err := template.New("name").Parse(...)
// Error checking elided // Error checking elided
err = set.Execute(out, "Foo", data) err = tmpl.Execute(out, "Foo", data)
If successful, set will now be injection-safe. Otherwise, err is an error If successful, tmpl will now be injection-safe. Otherwise, err is an error
defined in the docs for ErrorCode. defined in the docs for ErrorCode.
HTML templates treat data values as plain text which should be encoded so they HTML templates treat data values as plain text which should be encoded so they
......
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