aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2011-09-08 11:02:39 +1000
committerRuss Cox <rsc@golang.org>2011-09-08 11:02:39 +1000
commitdda8180c9636728e77d455bcb44ebb24fa487dac (patch)
tree13c1928b015a2993cd8918c80baaccb213174947
parent1fc3d23ca063a16840ca9fb54d0519319290d18d (diff)
downloadgo-dda8180c9636728e77d455bcb44ebb24fa487dac.tar.gz
go-dda8180c9636728e77d455bcb44ebb24fa487dac.zip
[release-branch.r60] template: Grammar fix for template documentation.
««« CL 4944043 / 6577cd4b870f template: Grammar fix for template documentation. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4944043 »»» R=dsymonds CC=golang-dev https://golang.org/cl/4978058
-rw-r--r--src/pkg/template/doc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/template/doc.go b/src/pkg/template/doc.go
index f65946aed9..a52f32d91b 100644
--- a/src/pkg/template/doc.go
+++ b/src/pkg/template/doc.go
@@ -294,7 +294,7 @@ This defines two templates, T1 and T2, and a third T3 that invokes the other two
when it is executed.
The second way to build a template set is to use Set's Add method to add a
-parsed template to a set. A template may be bound at most one set. If it's
+parsed template to a set. A template may be bound to at most one set. If it's
necessary to have a template in multiple sets, the template definition must be
parsed multiple times to create distinct *Template values.