From eb519afefdd506de46968f598fe78af7cda49dee Mon Sep 17 00:00:00 2001 From: Anthony Fok Date: Tue, 4 Aug 2015 13:01:25 -0600 Subject: [PATCH] docs: Fix typos --- docs/content/overview/configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/overview/configuration.md b/docs/content/overview/configuration.md index 5c888703a..4a718d194 100644 --- a/docs/content/overview/configuration.md +++ b/docs/content/overview/configuration.md @@ -141,13 +141,13 @@ Following is a list of Hugo-defined variables that you can configure and their c ## Ignore files on build -The following inside `config.toml` will ignore files ending with `.foo` and `.boo` when building with `hugo`. +The following inside `config.toml` will ignore files ending with `.foo` and `.boo` when building with `hugo`: ``` ignoreFiles = [ "\\.foo$", "\\.boo$" ] ``` -The above is is a list of Reqular Expressions, but note the escaping of the `\` to make TOML happy. +The above is a list of Regular Expressions, but note the escaping of the `\` to make TOML happy.