From 827ade19069b6dabd9f3ee9feda1c2f153318598 Mon Sep 17 00:00:00 2001 From: Justin Francos Date: Mon, 9 Apr 2018 14:20:06 -0400 Subject: [PATCH] fixed 2 cases of "it's" where it should be "its" (#782) Its = it + possessive It's = it is --- content/docs/static-type-checking.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/docs/static-type-checking.md b/content/docs/static-type-checking.md index 7b8b0622..24aef44b 100644 --- a/content/docs/static-type-checking.md +++ b/content/docs/static-type-checking.md @@ -265,9 +265,9 @@ To be able to show errors and hints from other packages, the compiler relies on There are two main ways to get declarations for a library: -__Bundled__ - The library bundles it's own declaration file. This is great for us, since all we need to do is install the library, and we can use it right away. To check if a library has bundled types, look for an `index.d.ts` file in the project. Some libraries will have it specified in their `package.json` under the `typings` or `types` field. +__Bundled__ - The library bundles its own declaration file. This is great for us, since all we need to do is install the library, and we can use it right away. To check if a library has bundled types, look for an `index.d.ts` file in the project. Some libraries will have it specified in their `package.json` under the `typings` or `types` field. -__[DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped)__ - DefinitelyTyped is a huge repository of declarations for libraries that don't bundle a declaration file. The declarations are crowd-sourced and managed by Microsoft and open source contributors. React for example doesn't bundle it's own declaration file. Instead we can get it from DefinitelyTyped. To do so enter this command in your terminal. +__[DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped)__ - DefinitelyTyped is a huge repository of declarations for libraries that don't bundle a declaration file. The declarations are crowd-sourced and managed by Microsoft and open source contributors. React for example doesn't bundle its own declaration file. Instead we can get it from DefinitelyTyped. To do so enter this command in your terminal. ```bash # yarn