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

chore(docs): Used “you” and "you're" as the pronoun #18707

Merged
merged 1 commit into from
Oct 16, 2019
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
6 changes: 3 additions & 3 deletions docs/tutorial/prismic-source-graphql-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export default ({ data }) => {

Save the file and check on your site running at [`http://localhost:8000`](http://localhost:8000)

You can use the helper function `RichText` to [render formatted text](https://prismic.io/docs/reactjs/rendering/rich-text) and generally, this is the process you will use to query your Prismic repository and then render it. We can clean this up and include a function that will render the array of queried blog posts.
You can use the helper function `RichText` to [render formatted text](https://prismic.io/docs/reactjs/rendering/rich-text) and generally, this is the process you will use to query your Prismic repository and then render it. You can clean this up and include a function that will render the array of queried blog posts.

```js:title=src/pages/index.js
//highlight-start
Expand Down Expand Up @@ -181,7 +181,7 @@ export default ({ data }) => {

## Building links to your documents

Now things are really taking shape. We will turn these blog post titles into links by building a [link resolver function](https://prismic.io/docs/reactjs/beyond-the-api/link-resolving), which will build the correct route for your posts.
Now things are really taking shape. You will turn these blog post titles into links by building a [link resolver function](https://prismic.io/docs/reactjs/beyond-the-api/link-resolving), which will build the correct route for your posts.

```javascript:title=src/utils/linkResolver.js
exports.linkResolver = function linkResolver(doc) {
Expand Down Expand Up @@ -277,7 +277,7 @@ export default ({ data }) => {
}
```

We're rendering a very minimalistic page for each blog post; consisting of:
You're rendering a very minimalistic page for each blog post; consisting of:

- A link back to the homepage.
- The article's title and page.
Expand Down