From 4e897255763391fe2b9cbe5ffdbf885c24ac910d Mon Sep 17 00:00:00 2001 From: Aisha Blake Date: Fri, 1 May 2020 15:47:10 -0400 Subject: [PATCH] Use you as the pronoun --- docs/docs/typescript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/typescript.md b/docs/docs/typescript.md index 773911469a08a..4c69bfd99e874 100644 --- a/docs/docs/typescript.md +++ b/docs/docs/typescript.md @@ -22,7 +22,7 @@ export default function IndexRoute(props: PageProps) { } ``` -In this example, we are using the power of TypeScript, in combination with exported types from Gatsby (`PageProps`) to tell this code what props is. This can greatly improve your developer experience by letting your IDE show you what properties are injected by Gatsby. To see all of the types available look at our [TypeScript definition file](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby/index.d.ts). +The example above uses the power of TypeScript, in combination with exported types from Gatsby (`PageProps`) to tell this code what props is. This can greatly improve your developer experience by letting your IDE show you what properties are injected by Gatsby. To see all of the types available look at our [TypeScript definition file](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby/index.d.ts). ## Other resources