Fix typo: "taxononomy" -> "taxonomy" - hugo - [fork] hugo port for 9front
(HTM) git clone git@git.drkhsh.at/hugo.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
(DIR) commit c8477c4f6e5ca11ad0daaab09eb1102392bfccb4
(DIR) parent 1a94148d062beb6e45d5eeef3447d0308e496718
(HTM) Author: Edward Vielmetti <edward.vielmetti@gmail.com>
Date: Thu, 16 Jul 2015 07:47:35 -0400
Fix typo: "taxononomy" -> "taxonomy"
Diffstat:
M hugolib/site.go | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
(DIR) diff --git a/hugolib/site.go b/hugolib/site.go
@@ -1095,7 +1095,7 @@ func taxonomyRenderer(s *Site, taxes <-chan taxRenderInfo, results chan<- error,
n, base = s.newTaxonomyNode(t)
- if err := s.renderAndWritePage("taxononomy "+t.singular, base, n, layouts...); err != nil {
+ if err := s.renderAndWritePage("taxonomy "+t.singular, base, n, layouts...); err != nil {
results <- err
continue
}
@@ -1124,7 +1124,7 @@ func taxonomyRenderer(s *Site, taxes <-chan taxRenderInfo, results chan<- error,
}
pageNumber := i + 1
htmlBase := fmt.Sprintf("/%s/%s/%d", base, paginatePath, pageNumber)
- if err := s.renderAndWritePage(fmt.Sprintf("taxononomy %s", t.singular), htmlBase, taxonomyPagerNode, layouts...); err != nil {
+ if err := s.renderAndWritePage(fmt.Sprintf("taxonomy %s", t.singular), htmlBase, taxonomyPagerNode, layouts...); err != nil {
results <- err
continue
}