diff options
author | Joe Mooring <[email protected]> | 2021-10-25 13:35:35 -0700 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2021-10-26 12:59:15 +0200 |
commit | 1d60bd1efa943349636edad3dd8c5427312ab0f1 (patch) | |
tree | 5324f1884214792222715071d98940e6dfed377a /create | |
parent | 75c9b893d98961a504cff9ed3c89055d16e315d6 (diff) | |
download | hugo-1d60bd1efa943349636edad3dd8c5427312ab0f1.tar.gz hugo-1d60bd1efa943349636edad3dd8c5427312ab0f1.zip |
Fix typo in error message
Diffstat (limited to 'create')
-rw-r--r-- | create/content.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/create/content.go b/create/content.go index eb0658604..017f97e3d 100644 --- a/create/content.go +++ b/create/content.go @@ -92,7 +92,7 @@ func NewContent(h *hugolib.HugoSites, kind, targetPath string) error { } if !files.IsContentFile(b.targetPath) { - return errors.Errorf("target path %q is not a kown content format", b.targetPath) + return errors.Errorf("target path %q is not a known content format", b.targetPath) } return b.buildFile() |