From e5c4371d728c69ffe6842945a683979116f78d18 Mon Sep 17 00:00:00 2001 From: Marcelo Melo Date: Sun, 12 Nov 2017 15:18:09 -0200 Subject: [PATCH] docs(aio): fix typo in filename (packages.json --> package.json) (#20377) PR Close #20377 --- aio/content/guide/npm-packages.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aio/content/guide/npm-packages.md b/aio/content/guide/npm-packages.md index 8543f3556e..fddb4805b9 100644 --- a/aio/content/guide/npm-packages.md +++ b/aio/content/guide/npm-packages.md @@ -28,11 +28,11 @@ you already have projects running on your machine that use other versions of nod Both `npm` and `yarn` install packages identified in a [**package.json**](https://docs.npmjs.com/files/package.json) file. -The CLI `ng new` command creates a default `packages.json` file for your project. -This `packages.json` specifies _a starter set of packages_ that work well together and +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 jointly support many common application scenarios. -You will add packages to `packages.json` as your application evolves. +You will add packages to `package.json` as your application evolves. You may even remove some. This guide focuses on the most important packages in the starter set.