diff options
author | r <r@freesoftwareextremist.com> | 2021-01-30 04:13:22 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2021-01-30 04:13:22 +0000 |
commit | 9f34b607498c09b4a21bdcc82b3295f6c94bd058 (patch) | |
tree | c5a528cad05227f15f30b07f6d0056045176166b /config | |
parent | c3f39210d8451d65f3ecaa88046380f42dc536a1 (diff) | |
parent | 3ac95ab3b117ee8867a30c8e4b30ab37411e5ccf (diff) | |
download | bloat-9f34b607498c09b4a21bdcc82b3295f6c94bd058.tar.gz bloat-9f34b607498c09b4a21bdcc82b3295f6c94bd058.zip |
Merge branch 'master' into absolute_fluoride
Diffstat (limited to 'config')
-rw-r--r-- | config/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/config.go b/config/config.go index d6140e5..8678f52 100644 --- a/config/config.go +++ b/config/config.go @@ -101,7 +101,7 @@ func Parse(r io.Reader) (c *config, err error) { case "log_file": c.LogFile = val default: - return nil, errors.New("invliad config key " + key) + return nil, errors.New("invalid config key " + key) } } |