Skip to content

Commit

Permalink
Semi-Colons (#3764)
Browse files Browse the repository at this point in the history
  • Loading branch information
gc authored and KyleAMathews committed Jan 29, 2018
1 parent 4d59fc5 commit f97b0a2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/tutorial/part-two/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ module.exports = {
},
},
],
}
};
```

Stop `gatsby develop` by typing <kbd>Ctrl + c</kbd> into the terminal window where the development process has been running. Then, run `gatsby develop` again to restart it. This will allow our plugin change to take effect.
Expand All @@ -282,9 +282,9 @@ To use the Bootstrap theme, change your typography code to:
import Typography from "typography";
import bootstrapTheme from "typography-theme-bootstrap";
const typography = new Typography(bootstrapTheme)
const typography = new Typography(bootstrapTheme);
export default typography
export default typography;
```

![typography-bootstrap](typography-bootstrap.png)
Expand All @@ -298,9 +298,9 @@ import Typography from "typography";
// import bootstrapTheme from "typography-theme-bootstrap"
import lawtonTheme from "typography-theme-lawton";
const typography = new Typography(lawtonTheme)
const typography = new Typography(lawtonTheme);
export default typography
export default typography;
```

![typography-lawton](typography-lawton.png)
Expand Down

0 comments on commit f97b0a2

Please sign in to comment.