ref: bac1ba4655875d82ff46b42fa96625bb18e5f2f9
parent: 0d415e453bb5c8a01fd124d81f3a88a1cc760bcf
author: Derek Perkins <[email protected]>
date: Fri Feb 12 21:24:25 EST 2016
Fix spelling and go vet errors
--- a/hugolib/site.go
+++ b/hugolib/site.go
@@ -544,7 +544,7 @@
// once readResults is finished it will close coordinator and move along
<-coordinator
// allow that routine to finish, then close page & fileconvchan as we've sent
- // everthing to them we need to.
+ // everything to them we need to.
close(pageChan)
close(fileConvChan)
@@ -553,7 +553,7 @@
s.timerStep("read & convert pages from source")
- fmt.Errorf("%s", errs)
+ fmt.Errorf("%v", errs)
s.setupPrevNext()
if err = s.BuildSiteMeta(); err != nil {
@@ -582,8 +582,6 @@
} else {
return err
}
-
- return nil
}
func (s *Site) Analyze() error {
--- a/parser/page.go
+++ b/parser/page.go
@@ -247,7 +247,7 @@
}
// extractFrontMatterDelims takes a frontmatter from the content bufio.Reader.
-// Begining white spaces of the bufio.Reader must be trimmed before call this
+// Beginning white spaces of the bufio.Reader must be trimmed before call this
// function.
func extractFrontMatterDelims(r *bufio.Reader, left, right []byte) (fm FrontMatter, err error) {
var (
--- a/tpl/template_funcs.go
+++ b/tpl/template_funcs.go
@@ -1209,7 +1209,7 @@
return strings.Trim(aStr, b), nil
}
-// replace all occurences of b with c in a
+// replace all occurrences of b with c in a
func replace(a, b, c interface{}) (string, error) {
aStr, err := cast.ToStringE(a)
if err != nil {