Skip to content

Commit

Permalink
Adds a comma. (#20643)
Browse files Browse the repository at this point in the history
* Add a comma.

* Adds comma. Replaces setup with set up.
  • Loading branch information
VincenzoGambino authored and bball07 committed Jan 16, 2020
1 parent f62a38f commit 47df870
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/tutorial/part-one/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ You should now see your “About Gatsby” header text again!

### What are “props”?

Earlier you defined React components as reusable pieces of code describing a UI. To make these reusable pieces dynamic you need to be able to supply them with different data. You do that with input called "props". Props are (appropriately enough) properties supplied to React components.
Earlier, you defined React components as reusable pieces of code describing a UI. To make these reusable pieces dynamic you need to be able to supply them with different data. You do that with input called "props". Props are (appropriately enough) properties supplied to React components.

In `about.js` you passed a `headerText` prop with the value of `"About Gatsby"` to the imported `Header` sub-component:

Expand Down Expand Up @@ -335,7 +335,7 @@ The Gatsby `<Link />` component is for linking between pages within your site. F

## Deploying a Gatsby site

Gatsby.js is a _modern site generator_, which means there are no servers to setup or complicated databases to deploy. Instead, the Gatsby `build` command produces a directory of static HTML and JavaScript files which you can deploy to a static site hosting service.
Gatsby.js is a _modern site generator_, which means there are no servers to set up or complicated databases to deploy. Instead, the Gatsby `build` command produces a directory of static HTML and JavaScript files which you can deploy to a static site hosting service.

Try using [Surge](http://surge.sh/) for deploying your first Gatsby website. Surge is one of many "static site hosts" which makes it possible to deploy Gatsby sites.

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial/part-zero/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ You can use Prettier directly in your editor using the [Prettier VS Code plugin]

1. Open the extensions view on VS Code (View => Extensions).
2. Search for "Prettier - Code formatter".
3. Click "Install". (After installation you'll be prompted to restart VS Code to enable the extension. Newer versions of VS Code will automatically enable the extension after download.)
3. Click "Install". (After installation, you'll be prompted to restart VS Code to enable the extension. Newer versions of VS Code will automatically enable the extension after download.)

> 💡 If you're not using VS Code, check out the Prettier docs for [install instructions](https://prettier.io/docs/en/install.html) or [other editor integrations](https://prettier.io/docs/en/editors.html).
Expand Down

0 comments on commit 47df870

Please sign in to comment.