hugo

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

git clone git://git.shimmy1996.com/hugo.git
commit 7c7974b711879938eafc08a2ce242d0f00c8e9e6
parent 5656a908d837f2aa21837d39712b8ab4aa6db842
Author: Joe Mooring <joe.mooring@veriphor.com>
Date:   Wed, 31 Mar 2021 16:43:08 -0700

Fix typo in docshelper.go

Fixes #8380

Diffstat:
Moutput/docshelper.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/output/docshelper.go b/output/docshelper.go
@@ -55,7 +55,7 @@ func createLayoutExamples() interface{} {
 		{"Home page with type set", LayoutDescriptor{Kind: "home", Type: demoType}, HTMLFormat},
 		{"Base template for home page with type set", LayoutDescriptor{Baseof: true, Kind: "home", Type: demoType}, HTMLFormat},
 		{"Home page with layout set", LayoutDescriptor{Kind: "home", Type: "page", Layout: demoLayout}, HTMLFormat},
-		{`AMP home, French language"`, LayoutDescriptor{Kind: "home", Type: "page", Lang: "fr"}, AMPFormat},
+		{"AMP home, French language", LayoutDescriptor{Kind: "home", Type: "page", Lang: "fr"}, AMPFormat},
 		{"JSON home", LayoutDescriptor{Kind: "home", Type: "page"}, JSONFormat},
 		{"RSS home", LayoutDescriptor{Kind: "home", Type: "page"}, RSSFormat},
 		{"RSS section posts", LayoutDescriptor{Kind: "section", Type: "posts"}, RSSFormat},