diff options
author | Andreas Deininger <[email protected]> | 2022-01-15 01:07:17 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-01-14 16:07:17 -0800 |
commit | 9d8f318aab64fc29bffb029f47e0750cb70eb1ee (patch) | |
tree | 6dfdee740b7b79de69e67c938b5e8aa3c43a22b4 /modules | |
parent | fcbbbef22dac2967c9096c6f1a0aff9b50d7a4cb (diff) | |
download | hugo-9d8f318aab64fc29bffb029f47e0750cb70eb1ee.tar.gz hugo-9d8f318aab64fc29bffb029f47e0750cb70eb1ee.zip |
Fixing typos (#9387)
Diffstat (limited to 'modules')
-rw-r--r-- | modules/config.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/config.go b/modules/config.go index dd6285718..ac9eadd37 100644 --- a/modules/config.go +++ b/modules/config.go @@ -313,7 +313,7 @@ type HugoVersion struct { // The minimum Hugo version that this module works with. Min hugo.VersionString - // The maxium Hugo version that this module works with. + // The maximum Hugo version that this module works with. Max hugo.VersionString // Set if the extended version is needed. @@ -365,7 +365,7 @@ func (v HugoVersion) IsValid() bool { type Import struct { Path string // Module path pathProjectReplaced bool // Set when Path is replaced in project config. - IgnoreConfig bool // Ignore any config in config.toml (will still folow imports). + IgnoreConfig bool // Ignore any config in config.toml (will still follow imports). IgnoreImports bool // Do not follow any configured imports. NoMounts bool // Do not mount any folder in this import. NoVendor bool // Never vendor this import (only allowed in main project). |