From d5ddb9f340129c21649580334c2aedecd52c85be Mon Sep 17 00:00:00 2001 From: Andrew Date: Fri, 18 Sep 2020 09:33:23 -0600 Subject: [PATCH] docs: Grammar fixes (#38900) Changed several period into colons to be consistent throughout the doc. Changed "If don't add the interface..." to "If _you_ don't add the interface..." PR Close #38900 --- aio/content/guide/using-libraries.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aio/content/guide/using-libraries.md b/aio/content/guide/using-libraries.md index caf43ea7f94a2..07d3c9ebbe96e 100644 --- a/aio/content/guide/using-libraries.md +++ b/aio/content/guide/using-libraries.md @@ -32,7 +32,7 @@ To do this: 1. Create a `typings.d.ts` file in your `src/` folder. This file is automatically included as global type definition. -2. Add the following code in `src/typings.d.ts`. +2. Add the following code in `src/typings.d.ts`: ``` declare module 'host' { @@ -45,7 +45,7 @@ declare module 'host' { } ``` -3. In the component or file that uses the library, add the following code. +3. In the component or file that uses the library, add the following code: ``` import * as host from 'host'; @@ -129,7 +129,7 @@ interface JQuery { } ``` -If don't add the interface for the script-defined extension, your IDE shows an error: +If you don't add the interface for the script-defined extension, your IDE shows an error: ``` [TS][Error] Property 'myPlugin' does not exist on type 'JQuery'