hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit 1d60bd1efa943349636edad3dd8c5427312ab0f1
parent 75c9b893d98961a504cff9ed3c89055d16e315d6
Author: Joe Mooring <joe.mooring@veriphor.com>
Date:   Mon, 25 Oct 2021 13:35:35 -0700

Fix typo in error message

Diffstat:
Mcreate/content.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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()