summaryrefslogtreecommitdiff
path: root/gomplate.go
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2021-04-03 13:18:17 -0400
committerDave Henderson <dhenderson@gmail.com>2021-04-03 14:23:00 -0400
commitd334a3619a9897ff43b76b8f60fa1a0a41b9cbe9 (patch)
tree97f9fe27182604e41f08183fc42a2e4b4bded7ba /gomplate.go
parent507d41ae8a2536584eb032c98abc46496a77ea86 (diff)
Update linting and fix field alignment issues
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'gomplate.go')
-rw-r--r--gomplate.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/gomplate.go b/gomplate.go
index 3cfdb581..a036b392 100644
--- a/gomplate.go
+++ b/gomplate.go
@@ -23,12 +23,12 @@ import (
// gomplate -
type gomplate struct {
+ tmplctx interface{}
funcMap template.FuncMap
- leftDelim string
- rightDelim string
nestedTemplates templateAliases
rootTemplate *template.Template
- tmplctx interface{}
+
+ leftDelim, rightDelim string
}
// runTemplate -