From: Bill Neubauer Date: Thu, 25 Aug 2011 16:25:19 +0000 (-0400) Subject: template: Grammar fix for template documentation. X-Git-Tag: weekly.2011-09-01~86 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=948418f16a59a27238c066dc3ca4b86124fc9346;p=gostls13.git template: Grammar fix for template documentation. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4944043 --- 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.