ref: a6de8dfb42176484eba258a3dc87c7f1684a7b7f
parent: dac34f9bfd3e4465145ba7e1ee9fd76aad0f1c5a
author: Bjørn Erik Pedersen <[email protected]>
date: Wed Mar 23 13:17:54 EDT 2016
hugolib: Some more Golint fixes
--- a/hugolib/robotstxt_test.go
+++ b/hugolib/robotstxt_test.go
@@ -11,7 +11,7 @@
"github.com/spf13/viper"
)
-const ROBOTSTXT_TEMPLATE = `User-agent: Googlebot
+const robotTxtTemplate = `User-agent: Googlebot
{{ range .Data.Pages }}
Disallow: {{.RelPermalink}}
{{ end }}
@@ -31,7 +31,7 @@
s.initializeSiteInfo()
- s.prepTemplates("robots.txt", ROBOTSTXT_TEMPLATE)
+ s.prepTemplates("robots.txt", robotTxtTemplate)
if err := s.CreatePages(); err != nil {
t.Fatalf("Unable to create pages: %s", err)
--- a/hugolib/scratch.go
+++ b/hugolib/scratch.go
@@ -26,7 +26,7 @@
mu sync.RWMutex
}
-// For single values, Add will add (using the + operator) the addend to the existing addend (if found).
+// Add will, for single values, add (using the + operator) the addend to the existing addend (if found).
// Supports numeric values and strings.
//
// If the first add for a key is an array or slice, then the next value(s) will be appended.