all: Fix typos

This commit is contained in:
Christian Oliff 2024-02-11 20:51:33 +09:00 committed by GitHub
parent e309f82efe
commit 0672b5c766
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 15 additions and 15 deletions

View file

@ -72,10 +72,10 @@ type Format struct {
// Setting this will make this output format control the value of // Setting this will make this output format control the value of
// .Permalink and .RelPermalink for a rendered Page. // .Permalink and .RelPermalink for a rendered Page.
// If not set, these values will point to the main (first) output format // If not set, these values will point to the main (first) output format
// configured. That is probably the behaviour you want in most situations, // configured. That is probably the behavior you want in most situations,
// as you probably don't want to link back to the RSS version of a page, as an // as you probably don't want to link back to the RSS version of a page, as an
// example. AMP would, however, be a good example of an output format where this // example. AMP would, however, be a good example of an output format where this
// behaviour is wanted. // behavior is wanted.
Permalinkable bool `json:"permalinkable"` Permalinkable bool `json:"permalinkable"`
// Setting this to a non-zero value will be used as the first sort criteria. // Setting this to a non-zero value will be used as the first sort criteria.

View file

@ -21,7 +21,7 @@ import (
"github.com/gohugoio/hugo/common/paths" "github.com/gohugoio/hugo/common/paths"
) )
// ResourcePaths holds path information for a resouce. // ResourcePaths holds path information for a resource.
// All directories in here have Unix-style slashes, with leading slash, but no trailing slash. // All directories in here have Unix-style slashes, with leading slash, but no trailing slash.
// Empty directories are represented with an empty string. // Empty directories are represented with an empty string.
type ResourcePaths struct { type ResourcePaths struct {

View file

@ -30,7 +30,7 @@ import (
"github.com/gohugoio/hugo/resources/kinds" "github.com/gohugoio/hugo/resources/kinds"
) )
// PermalinkExpander holds permalin mappings per section. // PermalinkExpander holds permalink mappings per section.
type PermalinkExpander struct { type PermalinkExpander struct {
// knownPermalinkAttributes maps :tags in a permalink specification to a // knownPermalinkAttributes maps :tags in a permalink specification to a
// function which, given a page and the tag, returns the resulting string // function which, given a page and the tag, returns the resulting string
@ -422,7 +422,7 @@ func DecodePermalinksConfig(m map[string]any) (map[string]map[string]string, err
// [permalinks] // [permalinks]
// key = '...' // key = '...'
// To sucessfully be backward compatible, "default" patterns need to be set for both page and term // To successfully be backward compatible, "default" patterns need to be set for both page and term
permalinksConfig[kinds.KindPage][k] = v permalinksConfig[kinds.KindPage][k] = v
permalinksConfig[kinds.KindTerm][k] = v permalinksConfig[kinds.KindTerm][k] = v

View file

@ -29,7 +29,7 @@ import (
"github.com/gohugoio/hugo/navigation" "github.com/gohugoio/hugo/navigation"
) )
// Site represents a site. There can be multople sites in a multilingual setup. // Site represents a site. There can be multiple sites in a multilingual setup.
type Site interface { type Site interface {
// Returns the Language configured for this Site. // Returns the Language configured for this Site.
Language() *langs.Language Language() *langs.Language

View file

@ -85,7 +85,7 @@ type ResourceSourceDescriptor struct {
// Set when its known up front, else it's resolved from the target filename. // Set when its known up front, else it's resolved from the target filename.
MediaType media.Type MediaType media.Type
// Used to track depenencies (e.g. imports). May be nil if that's of no concern. // Used to track dependencies (e.g. imports). May be nil if that's of no concern.
DependencyManager identity.Manager DependencyManager identity.Manager
// A shared identity for this resource and all its clones. // A shared identity for this resource and all its clones.

View file

@ -126,7 +126,7 @@ type Spec struct {
*SpecCommon *SpecCommon
} }
// The parts of Spec that's comoon for all sites. // The parts of Spec that's common for all sites.
type SpecCommon struct { type SpecCommon struct {
incr identity.Incrementer incr identity.Incrementer
ResourceCache *ResourceCache ResourceCache *ResourceCache

View file

@ -572,7 +572,7 @@ func (ns *Namespace) Seq(args ...any) ([]int, error) {
return seq, nil return seq, nil
} }
// Shuffle returns list l in a randomised order. // Shuffle returns list l in a randomized order.
func (ns *Namespace) Shuffle(l any) (any, error) { func (ns *Namespace) Shuffle(l any) (any, error) {
if l == nil { if l == nil {
return nil, errors.New("both count and seq must be provided") return nil, errors.New("both count and seq must be provided")

View file

@ -47,7 +47,7 @@ func (ns *Namespace) Print(args ...any) string {
return _fmt.Sprint(args...) return _fmt.Sprint(args...)
} }
// Printf returns string representation of args formatted with the layouut in format. // Printf returns string representation of args formatted with the layout in format.
func (ns *Namespace) Printf(format string, args ...any) string { func (ns *Namespace) Printf(format string, args ...any) string {
return _fmt.Sprintf(format, args...) return _fmt.Sprintf(format, args...)
} }
@ -87,12 +87,12 @@ func (ns *Namespace) Warnidf(id, format string, args ...any) string {
return "" return ""
} }
// Warnmf is epxermimental and subject to change at any time. // Warnmf is experimental and subject to change at any time.
func (ns *Namespace) Warnmf(m any, format string, args ...any) string { func (ns *Namespace) Warnmf(m any, format string, args ...any) string {
return ns.logmf(ns.logger.Warn(), m, format, args...) return ns.logmf(ns.logger.Warn(), m, format, args...)
} }
// Errormf is epxermimental and subject to change at any time. // Errormf is experimental and subject to change at any time.
func (ns *Namespace) Errormf(m any, format string, args ...any) string { func (ns *Namespace) Errormf(m any, format string, args ...any) string {
return ns.logmf(ns.logger.Error(), m, format, args...) return ns.logmf(ns.logger.Error(), m, format, args...)
} }

View file

@ -38,7 +38,7 @@ func ResolveIfFirstArgIsString(args []any) (resources.ResourceTransformer, strin
return v2, v1, ok2 return v2, v1, ok2
} }
// This roundabout way of doing it is needed to get both pipeline behaviour and options as arguments. // This roundabout way of doing it is needed to get both pipeline behavior and options as arguments.
func ResolveArgs(args []any) (resources.ResourceTransformer, map[string]any, error) { func ResolveArgs(args []any) (resources.ResourceTransformer, map[string]any, error) {
if len(args) == 0 { if len(args) == 0 {
return nil, nil, errors.New("no Resource provided in transformation") return nil, nil, errors.New("no Resource provided in transformation")

View file

@ -201,7 +201,7 @@ func (r *recording) record(filename string) error {
r.FileInfo = fi r.FileInfo = fi
// If fi is a dir, we watch the files inside that directory (not recursively). // If fi is a dir, we watch the files inside that directory (not recursively).
// This matches the behaviour of fsnotity. // This matches the behavior of fsnotity.
if fi.IsDir() { if fi.IsDir() {
f, err := os.Open(filename) f, err := os.Open(filename)
if err != nil { if err != nil {

View file

@ -3,5 +3,5 @@
trap exit SIGINT trap exit SIGINT
# I use "run tests on save" in my editor. # I use "run tests on save" in my editor.
# Unfortantly, changes to text files does not trigger this. Hence this workaround. # Unfortunately, changes to text files does not trigger this. Hence this workaround.
while true; do find testscripts -type f -name "*.txt" | entr -pd touch main_test.go; done while true; do find testscripts -type f -name "*.txt" | entr -pd touch main_test.go; done