From f7f549e3a7492c787c6abb4900cc0f57c8ab1826 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Wed, 31 Jul 2019 15:36:36 +0300 Subject: [PATCH] Fix assorted typos --- hugofs/stacktracer_fs.go | 2 +- hugolib/page__content.go | 2 +- hugolib/page_test.go | 4 ++-- modules/module.go | 2 +- resources/page/page.go | 2 +- resources/resource.go | 2 +- tpl/collections/merge_test.go | 2 +- tpl/tplimpl/shortcodes.go | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/hugofs/stacktracer_fs.go b/hugofs/stacktracer_fs.go index d4db164c..d3769f90 100644 --- a/hugofs/stacktracer_fs.go +++ b/hugofs/stacktracer_fs.go @@ -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 diff --git a/hugolib/page__content.go b/hugolib/page__content.go index 593c5b9a..1919fb17 100644 --- a/hugolib/page__content.go +++ b/hugolib/page__content.go @@ -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)) } } diff --git a/hugolib/page_test.go b/hugolib/page_test.go index 3a0a76c3..05dacbe0 100644 --- a/hugolib/page_test.go +++ b/hugolib/page_test.go @@ -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, "

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.

\n\n

Additional text.

\n\n

Further text.

\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, "

Some text.

\n\n

Some more text.

\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 link"), ext) } diff --git a/modules/module.go b/modules/module.go index bba7657c..f7191161 100644 --- a/modules/module.go +++ b/modules/module.go @@ -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 diff --git a/resources/page/page.go b/resources/page/page.go index e2c883a8..00b44960 100644 --- a/resources/page/page.go +++ b/resources/page/page.go @@ -219,7 +219,7 @@ type PageWithoutContent interface { ChildCareProvider TreeProvider - // Horisontal navigation + // Horizontal navigation InSectionPositioner PageRenderProvider PaginatorProvider diff --git a/resources/resource.go b/resources/resource.go index 0aee4a05..92bcbd0f 100644 --- a/resources/resource.go +++ b/resources/resource.go @@ -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 diff --git a/tpl/collections/merge_test.go b/tpl/collections/merge_test.go index 9e34a6e9..ca55107a 100644 --- a/tpl/collections/merge_test.go +++ b/tpl/collections/merge_test.go @@ -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}, } { diff --git a/tpl/tplimpl/shortcodes.go b/tpl/tplimpl/shortcodes.go index 92c25f10..b4172546 100644 --- a/tpl/tplimpl/shortcodes.go +++ b/tpl/tplimpl/shortcodes.go @@ -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 { -- 2.30.2