shithub: hugo

Download patch

ref: e2f8664ef4278e14ce1e21376804321fa013f570
parent: 46ac7453743f0bd889d0be3505bde2521f9f0336
author: Bjørn Erik Pedersen <[email protected]>
date: Tue Aug 8 06:54:35 EDT 2017

hugolib: More spelling

--- a/hugolib/handler_meta.go
+++ b/hugolib/handler_meta.go
@@ -37,7 +37,7 @@
 // HandledResults is a channel for HandledResult.
 type HandleResults chan<- HandledResult
 
-// NewMetaHandler creates a MetaHandle for a given extention.
+// NewMetaHandler creates a MetaHandle for a given extensions.
 func NewMetaHandler(in string) *MetaHandle {
 	x := &MetaHandle{ext: in}
 	x.Handler()
@@ -60,7 +60,7 @@
 	results <- HandledResult{err: errors.New("No handler found"), file: f}
 }
 
-// Convert handles the convertion of files and pages.
+// Convert handles the conversion of files and pages.
 func (mh *MetaHandle) Convert(i interface{}, s *Site, results HandleResults) {
 	h := mh.Handler()
 
@@ -84,7 +84,7 @@
 	}
 }
 
-// Handler finds the registered handler for the used extention.
+// Handler finds the registered handler for the used extensions.
 func (mh *MetaHandle) Handler() Handler {
 	if mh.handler == nil {
 		mh.handler = FindHandler(mh.ext)
@@ -107,7 +107,7 @@
 	return nil
 }
 
-// HandlerMatch checks if the given extention matches.
+// HandlerMatch checks if the given extensions matches.
 func HandlerMatch(h Handler, ext string) bool {
 	for _, x := range h.Extensions() {
 		if ext == x {
--- a/hugolib/multilingual.go
+++ b/hugolib/multilingual.go
@@ -36,7 +36,7 @@
 	langMapInit sync.Once
 }
 
-// Language returns the Language assosiated with the given string.
+// Language returns the Language associated with the given string.
 func (ml *Multilingual) Language(lang string) *helpers.Language {
 	ml.langMapInit.Do(func() {
 		ml.langMap = make(map[string]*helpers.Language)