From 7fa2cec906a2b4fa9bc7afd72111b27e316c65fb Mon Sep 17 00:00:00 2001 From: digitalcraftsman Date: Thu, 24 Mar 2016 22:56:50 +0100 Subject: [PATCH] tpl: Small Golint fixes --- tpl/template.go | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/tpl/template.go b/tpl/template.go index 54e16fcd2..9266fc8d4 100644 --- a/tpl/template.go +++ b/tpl/template.go @@ -101,16 +101,16 @@ func New() Template { return templates } -func partial(name string, context_list ...interface{}) template.HTML { +func partial(name string, contextList ...interface{}) template.HTML { if strings.HasPrefix("partials/", name) { name = name[8:] } var context interface{} - if len(context_list) == 0 { + if len(contextList) == 0 { context = nil } else { - context = context_list[0] + context = contextList[0] } return ExecuteTemplateToHTML(context, "partials/"+name, "theme/partials/"+name) } @@ -199,9 +199,8 @@ func (t *GoHTMLTemplate) checkState() { func (t *GoHTMLTemplate) AddInternalTemplate(prefix, name, tpl string) error { if prefix != "" { return t.AddTemplate("_internal/"+prefix+"/"+name, tpl) - } else { - return t.AddTemplate("_internal/"+name, tpl) } + return t.AddTemplate("_internal/"+name, tpl) } func (t *GoHTMLTemplate) AddInternalShortcode(name, content string) error {