diff options
Diffstat (limited to 'src/pkg/template/template_test.go')
-rw-r--r-- | src/pkg/template/template_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/template/template_test.go b/src/pkg/template/template_test.go index fe279a4d1..460a3a4b1 100644 --- a/src/pkg/template/template_test.go +++ b/src/pkg/template/template_test.go @@ -72,7 +72,7 @@ func plus1(v interface{}) string { return fmt.Sprint(i + 1) } -func writer(f func(interface{}) string) (func(io.Writer, interface{}, string)) { +func writer(f func(interface{}) string) func(io.Writer, interface{}, string) { return func(w io.Writer, v interface{}, format string) { io.WriteString(w, f(v)) } |