hugolib: More spelling
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 8 Aug 2017 08:54:35 +0000 (10:54 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 8 Aug 2017 08:54:35 +0000 (10:54 +0200)
hugolib/handler_meta.go
hugolib/multilingual.go

index 4d46e35605f35a885b2946cd18e3bc7e85373e5c..ae68ed5c7b8e8c215f3ed20b5449f46f2d993157 100644 (file)
@@ -37,7 +37,7 @@ type MetaHandler interface {
 // 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 @@ func (mh *MetaHandle) Read(f *source.File, s *Site, results HandleResults) {
        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 @@ func (mh *MetaHandle) Convert(i interface{}, s *Site, results HandleResults) {
        }
 }
 
-// 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 @@ func FindHandler(ext string) Handler {
        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 {
index 953f522bde1d9625ed09ab7604c89ccff5c00dd7..e0245fa2bd00196fc0e7e927390d683ac7960d2c 100644 (file)
@@ -36,7 +36,7 @@ type Multilingual struct {
        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)