ref: e21fdbae8d298fec289b5bdc7f09c551c6be3650
parent: e9921ae4b267ea7200aa67e6397f757b22a8261f
author: Kiley Dorton <[email protected]>
date: Fri Feb 24 08:27:32 EST 2017
docs: Fix ambiguous typo in quickstart
--- a/docs/content/overview/quickstart.md
+++ b/docs/content/overview/quickstart.md
@@ -89,7 +89,7 @@
* **config.toml**: Every website should have a configuration file at the root. By default, the configuration file uses `TOML` format but you can also use `YAML` or `JSON` formats as well. [TOML](https://github.com/toml-lang/toml) is minimal configuration file format that's easy to read due to obvious semantics. The configuration settings mentioned in the `config.toml` are applied to the full site. These configuration settings include `baseURL` and `title` of the website.
-* **content**: This is where you will store content of the website. Inside content, you will create sub-directories for different sections. Let's suppose your website has three actions -- `blog`, `article`, and `tutorial` then you will have three different directories for each of them inside the `content` directory. The name of the section i.e. `blog`, `article`, or `tutorial` will be used by Hugo to apply a specific layout applicable to that section.
+* **content**: This is where you will store content of the website. Inside content, you will create sub-directories for different sections. Let's suppose your website has three sections -- `blog`, `article`, and `tutorial` then you will have three different directories for each of them inside the `content` directory. The name of the section i.e. `blog`, `article`, or `tutorial` will be used by Hugo to apply a specific layout applicable to that section.
* **data**: This directory is used to store configuration files that can be
used by Hugo when generating your website.