Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[www] Tutorial: Small wording changes for clarification #3926

Merged
merged 2 commits into from
Feb 9, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/tutorial/part-three/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down Expand Up @@ -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";
Expand Down