From 24b887063728f4f93d8d6d9a91bf612b3032d303 Mon Sep 17 00:00:00 2001 From: Mark Mindenhall Date: Mon, 23 May 2016 21:43:18 -0600 Subject: [PATCH] move paren to new line --- template.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/template.go b/template.go index 3d07ec55..494acc4f 100644 --- a/template.go +++ b/template.go @@ -38,7 +38,8 @@ var ( // beeTemplateExt stores the template extension which will build beeTemplateExt = []string{"tpl", "html"} // beeTemplatePreprocessors stores associations of extension -> preprocessor handler - beeTemplateEngines = map[string]templatePreProcessor{}) + beeTemplateEngines = map[string]templatePreProcessor{} +) // ExecuteTemplate applies the template with name to the specified data object, // writing the output to wr.