diff options
author | Oleksandr Redko <[email protected]> | 2023-05-23 12:37:44 +0300 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2023-06-12 16:45:20 +0200 |
commit | b8526f32fa97711ff9447c5a08b0f0f7caef2637 (patch) | |
tree | 5b34fdbc62af30b8de9436715ad18277099371e4 /config/configLoader.go | |
parent | ed7e250068a495469a0f8e0859c7f667330b1013 (diff) | |
download | hugo-b8526f32fa97711ff9447c5a08b0f0f7caef2637.tar.gz hugo-b8526f32fa97711ff9447c5a08b0f0f7caef2637.zip |
commands,config: Fix typo in log and error messages
Diffstat (limited to 'config/configLoader.go')
-rw-r--r-- | config/configLoader.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/configLoader.go b/config/configLoader.go index 6e520b9cc..656ef7f7e 100644 --- a/config/configLoader.go +++ b/config/configLoader.go @@ -157,7 +157,7 @@ func LoadConfigFromDir(sourceFs afero.Fs, configDir, environment string) (Provid if err != nil { // This will be used in error reporting, use the most specific value. dirnames = []string{path} - return fmt.Errorf("failed to unmarshl config for path %q: %w", path, err) + return fmt.Errorf("failed to unmarshal config for path %q: %w", path, err) } var keyPath []string |