]> Cypherpunks repositories - gostls13.git/commitdiff
html/template: doc nit
authorRuss Cox <rsc@golang.org>
Mon, 12 Mar 2012 18:26:10 +0000 (14:26 -0400)
committerRuss Cox <rsc@golang.org>
Mon, 12 Mar 2012 18:26:10 +0000 (14:26 -0400)
Execute's data is untrusted regardless of package.

R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/5797062

src/pkg/html/template/doc.go

index 3699ea1a91c45c82e546239589f6f14c5e8b4b3f..f470facfd0c86c2ae9c1d8e4e8294e8db43c2ff0 100644 (file)
@@ -29,7 +29,7 @@ can be safely embedded in an HTML document. The escaping is contextual, so
 actions can appear within JavaScript, CSS, and URI contexts.
 
 The security model used by this package assumes that template authors are
-trusted, while text/template Execute's data parameter is not. More details are
+trusted, while Execute's data parameter is not. More details are
 provided below.
 
 Example