summaryrefslogtreecommitdiffstats
path: root/docs/content/en/getting-started/quick-start.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/getting-started/quick-start.md')
-rw-r--r--docs/content/en/getting-started/quick-start.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/content/en/getting-started/quick-start.md b/docs/content/en/getting-started/quick-start.md
index da35c314c..167dfc0e1 100644
--- a/docs/content/en/getting-started/quick-start.md
+++ b/docs/content/en/getting-started/quick-start.md
@@ -23,7 +23,7 @@ In this tutorial you will:
Before you begin this tutorial you must:
-1. [Install Hugo] (the extended edition)
+1. [Install Hugo] (extended edition, v0.112.0 or later)
1. [Install Git]
You must also be comfortable working from the command line.
@@ -51,7 +51,7 @@ hugo new site quickstart
cd quickstart
git init
git submodule add https://github.com/theNewDynamic/gohugo-theme-ananke themes/ananke
-echo "theme = 'ananke'" >> config.toml
+echo "theme = 'ananke'" >> hugo.toml
hugo server
```
@@ -86,7 +86,7 @@ git submodule add https://github.com/theNewDynamic/gohugo-theme-ananke themes/an
Append a line to the site configuration file, indicating the current theme.
```text
-echo "theme = 'ananke'" >> config.toml
+echo "theme = 'ananke'" >> hugo.toml
```
Start Hugo's development server to view the site.
@@ -152,7 +152,7 @@ Hugo's rendering engine conforms to the CommonMark [specification] for markdown.
## Configure the site
-With your editor, open the [site configuration] file (`config.toml`) in the root of your project.
+With your editor, open the [site configuration] file (`hugo.toml`) in the root of your project.
```text
baseURL = 'http://example.org/'