]> Cypherpunks repositories - gostls13.git/commitdiff
text/template: comment fix
authorKeith Randall <khr@golang.org>
Fri, 3 May 2013 21:22:34 +0000 (14:22 -0700)
committerKeith Randall <khr@golang.org>
Fri, 3 May 2013 21:22:34 +0000 (14:22 -0700)
R=golang-dev, minux.ma, r
CC=golang-dev
https://golang.org/cl/9086043

src/pkg/text/template/funcs.go

index 31549dc45b840de7d9c019f074d2c92a5909dd52..8187663648a27d6e1d7143b7635364aab108238d 100644 (file)
@@ -18,7 +18,7 @@ import (
 // FuncMap is the type of the map defining the mapping from names to functions.
 // Each function must have either a single return value, or two return values of
 // which the second has type error. In that case, if the second (error)
-// argument evaluates to non-nil during execution, execution terminates and
+// return value evaluates to non-nil during execution, execution terminates and
 // Execute returns that error.
 type FuncMap map[string]interface{}