summaryrefslogtreecommitdiff
path: root/src/pkg/template/template.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/template/template.go')
-rw-r--r--src/pkg/template/template.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/template/template.go b/src/pkg/template/template.go
index 1fa55dc8d..cbe21f5e2 100644
--- a/src/pkg/template/template.go
+++ b/src/pkg/template/template.go
@@ -107,8 +107,8 @@ type FormatterMap map[string]func(io.Writer, interface{}, string)
// Built-in formatters.
var builtins = FormatterMap{
"html": HTMLFormatter,
- "str": StringFormatter,
- "": StringFormatter,
+ "str": StringFormatter,
+ "": StringFormatter,
}
// The parsed state of a template is a vector of xxxElement structs.