From 31b96e99ff81ad7979a0c80aaafb1e27186a58e1 Mon Sep 17 00:00:00 2001 From: Judy Bogart Date: Thu, 26 Apr 2018 16:38:23 -0700 Subject: [PATCH] docs: correct typos (#23565) PR Close #23565 --- aio/content/guide/npm-packages.md | 2 +- aio/content/guide/quickstart.md | 2 +- aio/content/guide/setup.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/aio/content/guide/npm-packages.md b/aio/content/guide/npm-packages.md index a4e287fb3d..dcbd489881 100644 --- a/aio/content/guide/npm-packages.md +++ b/aio/content/guide/npm-packages.md @@ -26,7 +26,7 @@ you already have projects running on your machine that use other versions of Nod ## _package.json_ -Both `node` and `yarn` install packages are identified in a [**package.json**](https://docs.npmjs.com/files/package.json) file. +Both `npm` and `yarn` install packages that are identified in a [**package.json**](https://docs.npmjs.com/files/package.json) file. The CLI `ng new` command creates a default `package.json` file for your project. This `package.json` specifies _a starter set of packages_ that work well together and diff --git a/aio/content/guide/quickstart.md b/aio/content/guide/quickstart.md index b806e7d5d4..66eea81611 100644 --- a/aio/content/guide/quickstart.md +++ b/aio/content/guide/quickstart.md @@ -32,7 +32,7 @@ if they are not already on your machine. -**Verify that you are running at least Node.js version `8.x`or greater and npm version `5.x` or greater** +**Verify that you are running at least Node.js version `8.x` or greater and npm version `5.x` or greater** by running `node -v` and `npm -v` in a terminal/console window. Older versions produce errors, but newer versions are fine. diff --git a/aio/content/guide/setup.md b/aio/content/guide/setup.md index 9888252baf..98f9977230 100644 --- a/aio/content/guide/setup.md +++ b/aio/content/guide/setup.md @@ -301,7 +301,7 @@ If you're new to Angular, we recommend you follow the [tutorial](tutorial "Tour -## Appendix: NodeJS and NPM +## Appendix: Node.js and npm [Node.js](https://nodejs.org/en/) and the [npm](https://www.npmjs.com/) package manager are essential to modern web development with Angular and other platforms.