diff options
author | Andrew Gerrand <adg@golang.org> | 2010-04-28 10:14:58 +1000 |
---|---|---|
committer | Andrew Gerrand <adg@golang.org> | 2010-04-28 10:14:58 +1000 |
commit | 665502f8a78500204fab1081cf3857c05aaf37b8 (patch) | |
tree | 33d32d542b2177ca29fdde98251c2ced401ed594 /src | |
parent | a77bef91f7f92ec6fda02066d3960383174638b0 (diff) | |
download | golang-665502f8a78500204fab1081cf3857c05aaf37b8.tar.gz |
template: remove reference to json-template
Rather than confuse people by linking to a spec we
don't fully support, let them just use the package docs.
R=r, rsc
CC=golang-dev
http://codereview.appspot.com/1016041
Diffstat (limited to 'src')
-rw-r--r-- | src/pkg/template/template.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pkg/template/template.go b/src/pkg/template/template.go index d15db7f8b..73789c23a 100644 --- a/src/pkg/template/template.go +++ b/src/pkg/template/template.go @@ -4,9 +4,7 @@ /* Data-driven templates for generating textual output such as - HTML. See - http://code.google.com/p/json-template/wiki/Reference - for full documentation of the template language. A summary: + HTML. Templates are executed by applying them to a data structure. Annotations in the template refer to elements of the data |