From 4527a9242077f9e5a4f290e41c1acc9821cc7f62 Mon Sep 17 00:00:00 2001 From: Yisela Alvarez Trentini Date: Fri, 9 Feb 2018 15:43:02 +0100 Subject: [PATCH] [www] Tutorial: Small wording changes for clarification (#3926) gatsby-config.js needs to be created (before edited). Also, since the user will be changing windows to stop the process it might be useful to remind them where they were before. --- docs/tutorial/part-three/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorial/part-three/index.md b/docs/tutorial/part-three/index.md index 402bf65ebcf25..263bf990ebeec 100644 --- a/docs/tutorial/part-three/index.md +++ b/docs/tutorial/part-three/index.md @@ -37,7 +37,7 @@ const typography = new Typography(fairyGateTheme); export default typography; ``` -Then edit our site's `gatsby-config.js` at the root of the site: +Then create our site's `gatsby-config.js` at the root of the site, and add the following code to it: ```javascript module.exports = { @@ -137,7 +137,7 @@ Stop `gatsby develop` and start it again for the new layout to take effect. Sweet, the layout is working! Now, our text is centered and constrained to a column 650 pixels wide, as we specified. -Let's now add our site title: +Let's now add, in the same file, our site title: ```jsx{5} import React from "react";