From: Daniel Fleischman Date: Thu, 1 Jul 2010 02:57:26 +0000 (-0700) Subject: template: fix typo in doc comment X-Git-Tag: weekly.2010-07-01~14 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=040f08184294daee78bea0d193aea945b1835be9;p=gostls13.git template: fix typo in doc comment R=golang-dev, rsc CC=golang-dev https://golang.org/cl/1665047 --- diff --git a/src/pkg/template/template.go b/src/pkg/template/template.go index 334559c13c..a615b7b418 100644 --- a/src/pkg/template/template.go +++ b/src/pkg/template/template.go @@ -54,7 +54,7 @@ map passed to the template set up routines or in the default set ("html","str","") and is used to process the data for output. The formatter function has signature - func(wr io.Write, data interface{}, formatter string) + func(wr io.Writer, data interface{}, formatter string) where wr is the destination for output, data is the field value, and formatter is its name at the invocation site. */