From fd45f7485db22e78e033fa3154164a91072c9b76 Mon Sep 17 00:00:00 2001 From: Saif Date: Fri, 17 Jul 2020 13:45:01 +0300 Subject: [PATCH] docs(docs-infra): reformat redundant sentence (#38109) reformat sentence uses the npm package manager since npm is node package manager Fixes #38106 PR Close #38109 --- aio/content/guide/using-libraries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/using-libraries.md b/aio/content/guide/using-libraries.md index 3166901a77..caf43ea7f9 100644 --- a/aio/content/guide/using-libraries.md +++ b/aio/content/guide/using-libraries.md @@ -8,7 +8,7 @@ See the [Angular Resources](resources) page for links to the most popular ones. Libraries are published as [npm packages](guide/npm-packages), usually together with schematics that integrate them with the Angular CLI. To integrate reusable library code into an application, you need to install the package and import the provided functionality where you will use it. For most published Angular libraries, you can use the Angular CLI `ng add ` command. -The `ng add` command uses the npm package manager or [yarn](https://yarnpkg.com/) to install the library package, and invokes schematics that are included in the package to other scaffolding within the project code, such as adding import statements, fonts, themes, and so on. +The `ng add` command uses a package manager such as [npm](https://www.npmjs.com/) or [yarn](https://yarnpkg.com/) to install the library package, and invokes schematics that are included in the package to other scaffolding within the project code, such as adding import statements, fonts, themes, and so on. A published library typically provides a README or other documentation on how to add that lib to your app. For an example, see [Angular Material](https://material.angular.io/) docs.