From 1d60bd1efa943349636edad3dd8c5427312ab0f1 Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Mon, 25 Oct 2021 13:35:35 -0700 Subject: [PATCH] Fix typo in error message --- create/content.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()