Fix assorted typos
authorXhmikosR <xhmikosr@gmail.com>
Wed, 31 Jul 2019 12:36:36 +0000 (15:36 +0300)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 1 Aug 2019 11:55:48 +0000 (13:55 +0200)
hugofs/stacktracer_fs.go
hugolib/page__content.go
hugolib/page_test.go
modules/module.go
resources/page/page.go
resources/resource.go
tpl/collections/merge_test.go
tpl/tplimpl/shortcodes.go

index d4db164caf8b9a8154e9617fc638806d5b8f5539..d3769f9033743a9e648902444af053529079f48b 100644 (file)
@@ -24,7 +24,7 @@ import (
        "github.com/spf13/afero"
 )
 
-// Make sure we don't accidently use this in the real Hugo.
+// Make sure we don't accidentally use this in the real Hugo.
 var _ types.DevMarker = (*stacktracerFs)(nil)
 
 // NewStacktracerFs wraps the given fs printing stack traces for file creates
index 593c5b9a123d72522a4a8914e76da1163937d9fa..1919fb1715424de5c20ff073a1b621ac76e9b1c9 100644 (file)
@@ -70,7 +70,7 @@ func (p pageContent) contentToRender(renderedShortcodes map[string]string) []byt
 
                        }
                default:
-                       panic(fmt.Sprintf("unkown item type %T", it))
+                       panic(fmt.Sprintf("unknown item type %T", it))
                }
        }
 
index 3a0a76c3d201720eea370854ac904dde08f890ab..05dacbe0ac9c209d92a5eec5c4cd6ff5e1f20b5d 100644 (file)
@@ -560,7 +560,7 @@ func TestPageSummary(t *testing.T) {
        assertFunc := func(t *testing.T, ext string, pages page.Pages) {
                p := pages[0]
                checkPageTitle(t, p, "SimpleWithoutSummaryDelimiter")
-               // Source is not Asciidoctor- or RST-compatibile so don't test them
+               // Source is not Asciidoctor- or RST-compatible so don't test them
                if ext != "ad" && ext != "rst" {
                        checkPageContent(t, p, normalizeExpected(ext, "<p><a href=\"https://lipsum.com/\">Lorem ipsum</a> dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>\n\n<p>Additional text.</p>\n\n<p>Further text.</p>\n"), ext)
                        checkPageSummary(t, p, normalizeExpected(ext, "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Additional text."), ext)
@@ -590,7 +590,7 @@ func TestPageWithSummaryParameter(t *testing.T) {
                p := pages[0]
                checkPageTitle(t, p, "SimpleWithSummaryParameter")
                checkPageContent(t, p, normalizeExpected(ext, "<p>Some text.</p>\n\n<p>Some more text.</p>\n"), ext)
-               // Summary is not Asciidoctor- or RST-compatibile so don't test them
+               // Summary is not Asciidoctor- or RST-compatible so don't test them
                if ext != "ad" && ext != "rst" {
                        checkPageSummary(t, p, normalizeExpected(ext, "Page with summary parameter and <a href=\"http://www.example.com/\">a link</a>"), ext)
                }
index bba7657c5eafba31cc303603e792184e2d09ef5a..f719116174041b70c878fa416c029aea07b0e46e 100644 (file)
@@ -12,7 +12,7 @@
 // limitations under the License.
 
 // Package modules provides a client that can be used to manage Hugo Components,
-// what's refered to as Hugo Modules. Hugo Modules is built on top of Go Modules,
+// what's referred to as Hugo Modules. Hugo Modules is built on top of Go Modules,
 // but also supports vendoring and components stored directly in the themes dir.
 package modules
 
index e2c883a8e13be6b3f64505ccdbc6da4a993377ad..00b449607fc5a5bab5447e3be3586cc9aa43d030 100644 (file)
@@ -219,7 +219,7 @@ type PageWithoutContent interface {
        ChildCareProvider
        TreeProvider
 
-       // Horisontal navigation
+       // Horizontal navigation
        InSectionPositioner
        PageRenderProvider
        PaginatorProvider
index 0aee4a052451c46fa8f1e65cb5aec13fce08681f..92bcbd0fc5abf34765e01640c1148db413287683 100644 (file)
@@ -702,7 +702,7 @@ func (r *Spec) newGenericResourceWithBase(
        mediaType media.Type) *genericResource {
 
        if osFileInfo != nil && osFileInfo.IsDir() {
-               panic(fmt.Sprintf("dirs nto supported resource types: %v", osFileInfo))
+               panic(fmt.Sprintf("dirs not supported resource types: %v", osFileInfo))
        }
 
        // This value is used both to construct URLs and file paths, but start
index 9e34a6e98d72e6b566ef8ac3e7c8c803193d8dfb..ca55107acbf0b6f9ea488d25dd9b50f20564a53a 100644 (file)
@@ -61,7 +61,7 @@ func TestMerge(t *testing.T) {
                // Error cases.
                {"dst not a map", "not a map", nil, nil, true},
                {"src not a map", simpleMap, "not a map", nil, true},
-               {"diferent map typs", simpleMap, map[int]interface{}{32: "a"}, nil, true},
+               {"different map types", simpleMap, map[int]interface{}{32: "a"}, nil, true},
                {"all nil", nil, nil, nil, true},
        } {
 
index 92c25f10802030fc8a3f958671508c1ab6e25517..b41725463561fb9d330206d13ce90db05ac4d9a1 100644 (file)
@@ -83,7 +83,7 @@ func (s *shortcodeTemplates) fromVariantsSlice(variants []string) (shortcodeVari
        return bestMatch, true
 }
 
-// calculate a weight for two string slices of same lenght.
+// calculate a weight for two string slices of same length.
 // higher value means "better match".
 func (s *shortcodeTemplates) compareVariants(a, b []string) int {