From 4f779801b44e0b101a9020a5d99ae5026a1b12ee Mon Sep 17 00:00:00 2001 From: Vincent Prouillet Date: Tue, 2 May 2023 13:39:13 +0200 Subject: [PATCH] Fix typo in error message --- components/site/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/site/src/lib.rs b/components/site/src/lib.rs index f2cb1951f5..2d26b1545e 100644 --- a/components/site/src/lib.rs +++ b/components/site/src/lib.rs @@ -370,7 +370,7 @@ impl Site { if self.config.build_search_index && !index_section.meta.in_search_index { bail!( "You have enabled search in the config but disabled it in the index section: \ - either turn off the search in the config or remote `in_search_index = true` from the \ + either turn off the search in the config or remove `in_search_index = true` from the \ section front-matter." ) }