Commit d0351e96 authored by Rob Pike's avatar Rob Pike

text/template,html/template: correct comment in DefinedTemplates

The prefix includes a semicolon.

Change-Id: I4bdb79aa9931e835e297f3ea2c46a001cd123d56
Reviewed-on: https://go-review.googlesource.com/17200Reviewed-by: default avatarAndrew Gerrand <adg@golang.org>
parent 7a1fb95d
...@@ -144,7 +144,7 @@ func (t *Template) lookupAndEscapeTemplate(name string) (tmpl *Template, err err ...@@ -144,7 +144,7 @@ func (t *Template) lookupAndEscapeTemplate(name string) (tmpl *Template, err err
} }
// DefinedTemplates returns a string listing the defined templates, // DefinedTemplates returns a string listing the defined templates,
// prefixed by the string "defined templates are: ". If there are none, // prefixed by the string "; defined templates are: ". If there are none,
// it returns the empty string. Used to generate an error message. // it returns the empty string. Used to generate an error message.
func (t *Template) DefinedTemplates() string { func (t *Template) DefinedTemplates() string {
return t.text.DefinedTemplates() return t.text.DefinedTemplates()
......
...@@ -180,7 +180,7 @@ func (t *Template) Execute(wr io.Writer, data interface{}) (err error) { ...@@ -180,7 +180,7 @@ func (t *Template) Execute(wr io.Writer, data interface{}) (err error) {
} }
// DefinedTemplates returns a string listing the defined templates, // DefinedTemplates returns a string listing the defined templates,
// prefixed by the string "defined templates are: ". If there are none, // prefixed by the string "; defined templates are: ". If there are none,
// it returns the empty string. For generating an error message here // it returns the empty string. For generating an error message here
// and in html/template. // and in html/template.
func (t *Template) DefinedTemplates() string { func (t *Template) DefinedTemplates() string {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment