diff --git a/website/docs/tutorial/queries-1.md b/website/docs/tutorial/queries-1.md index 4c3a4c2b24092..e34263c94bc97 100644 --- a/website/docs/tutorial/queries-1.md +++ b/website/docs/tutorial/queries-1.md @@ -85,7 +85,7 @@ Now that we’ve defined the query, we need to do two things. If you open package.json you will find the script `relay` is hooked up to run the relay-compiler. This is what npm run relay does. Once the compiler successfully updates/generated the new compiled query you will be able to find it in the __generated__ folder under src/components/ as NewsfeedQuery.graphql.ts. This project comes with precomputed fragments, so unless you do this step, you will not get the desired results. -Next, Turn back to the `Newsfeed` component and start by deleting the placeholder data. Then replace it with this: +Next, turn back to the `Newsfeed` component and start by deleting the placeholder data. Then, replace it with this: ``` import { useLazyLoadQuery } from "react-relay";