diff --git a/content/en/content-management/sections.md b/content/en/content-management/sections.md index 17fcb0817..d70bbea19 100644 --- a/content/en/content-management/sections.md +++ b/content/en/content-management/sections.md @@ -87,7 +87,7 @@ Also see [Page Variables](/variables/page/). ## Content Section Lists -Hugo will automatically create pages for each *root section* that list all of the content in that section. See the documentation on [section templates][] for details on customizing the way these pages are rendered. +Hugo will automatically create a page for each *root section* that lists all the content in that section. See the documentation on [section templates][] for details on customizing the way these pages are rendered. ## Content *Section* vs Content *Type* diff --git a/content/en/content-management/shortcodes.md b/content/en/content-management/shortcodes.md index 6b8a1e9ce..870af678b 100644 --- a/content/en/content-management/shortcodes.md +++ b/content/en/content-management/shortcodes.md @@ -176,7 +176,7 @@ If the gist contains several files and you want to quote just one of them, you c #### Example `gist` Display -To demonstrate the remarkably efficiency of Hugo's shortcode feature, we have embedded the `spf13` `gist` example in this page. The following simulates the experience for visitors to your website. Naturally, the final display will be contingent on your stylesheets and surrounding markup. +To demonstrate the remarkable efficiency of Hugo's shortcode feature, we have embedded the `spf13` `gist` example in this page. The following simulates the experience for visitors to your website. Naturally, the final display will depend on your stylesheets and surrounding markup. {{< gist spf13 7896402 >}} @@ -259,7 +259,7 @@ The `instagram`-shortcode refers an endpoint of Instagram's API, that's deprecat ### `param` -Gets a value from the current `Page's` params set in front matter, with a fall back to the site param value. It will log an `ERROR` if the param with the given key could not be found in either. +Gets a value from the current `Page's` params set in front matter, with a fallback to the site param value. It will log an `ERROR` if the param with the given key could not be found in either. ```bash {{}} diff --git a/content/en/contribute/development.md b/content/en/contribute/development.md index 1fa6a404b..a9d06343a 100644 --- a/content/en/contribute/development.md +++ b/content/en/contribute/development.md @@ -85,7 +85,7 @@ You will need to have Git installed on your computer to contribute to Hugo devel Git is a [version control system](https://en.wikipedia.org/wiki/Version_control) to track the changes of source code. Hugo depends on smaller third-party packages that are used to extend the functionality. We use them because we don't want to reinvent the wheel. -Go ships with a sub-command called `get` that will download these packages for us when we setup our working environment. The source code of the packages is tracked with Git. `get` will interact with the Git servers of the package hosters in order to fetch all dependencies. +Go ships with a sub-command called `get` that will download these packages for us when we set up our working environment. The source code of the packages is tracked with Git. `get` will interact with the Git servers of the package hosters in order to fetch all dependencies. Move back to the terminal and check if Git is already installed. Type in `git version` and press enter. You can skip the rest of this section if the command returned a version number. Otherwise [download](https://git-scm.com/downloads) the latest version of Git and follow this [installation guide](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git). @@ -305,7 +305,7 @@ git log # Exit with q ``` -After making the last commit you may have forgot something. There is no need to create a new commit. Just add the latest changes and merge them into the intended commit: +After making the last commit you may have forgotten something. There is no need to create a new commit. Just add the latest changes and merge them into the intended commit: ```txt git add --all diff --git a/content/en/functions/GetPage.md b/content/en/functions/GetPage.md index aa5e9323f..0c74e628b 100644 --- a/content/en/functions/GetPage.md +++ b/content/en/functions/GetPage.md @@ -46,7 +46,7 @@ And since `Page` also provides a `.GetPage` method, the above is the same as: ## .GetPage and Multilingual Sites -The previous examples have used the full content filename to lookup the post. Depending on how you have organized your content (whether you have the language code in the file name or not, e.g. `my-post.en.md`), you may want to do the lookup without extension. This will get you the current language's version of the page: +The previous examples have used the full content filename to look up the post. Depending on how you have organized your content (whether you have the language code in the file name or not, e.g. `my-post.en.md`), you may want to do the lookup without extension. This will get you the current language's version of the page: ```go-html-template {{ with .Site.GetPage "/blog/my-post" }}{{ .Title }}{{ end }} diff --git a/content/en/functions/absurl.md b/content/en/functions/absurl.md index 13524d2d6..808cc00d8 100644 --- a/content/en/functions/absurl.md +++ b/content/en/functions/absurl.md @@ -38,7 +38,7 @@ The last two examples may look strange but can be very useful. For example, the {{< /code >}} -The above uses the [apply function][] and also exposes how the Go template parser JSON-encodes objects inside `