aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/html
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2012-03-12 14:26:10 -0400
committerRuss Cox <rsc@golang.org>2012-03-12 14:26:10 -0400
commit4084f0840126e7b271e651e2f3d955ea808c9645 (patch)
tree65ff370f6c0ca25f7883c1defb68097fe3d83de0 /src/pkg/html
parentb23b001bd2e780ddb1eacded10797e92be1f3650 (diff)
downloadgo-4084f0840126e7b271e651e2f3d955ea808c9645.tar.xz
html/template: doc nit
Execute's data is untrusted regardless of package. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5797062
Diffstat (limited to 'src/pkg/html')
-rw-r--r--src/pkg/html/template/doc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/html/template/doc.go b/src/pkg/html/template/doc.go
index 3699ea1a91..f470facfd0 100644
--- a/src/pkg/html/template/doc.go
+++ b/src/pkg/html/template/doc.go
@@ -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