Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMapleCCC <littlelittlemaple@gmail.com>2022-07-28 00:02:47 +0300
committerGitHub <noreply@github.com>2022-07-28 00:02:47 +0300
commit77bf2e10236b72613101ac21d151f5974240f3aa (patch)
tree3709a84476585b1a43e23e3fdaa4a33b6c5705c2 /docs
parentf9abee79abe541226a249f50bdeec41317dd5712 (diff)
docs: update npm-ls.md (#5218)
Diffstat (limited to 'docs')
-rw-r--r--docs/content/commands/npm-ls.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/commands/npm-ls.md b/docs/content/commands/npm-ls.md
index a97c5168e..a7936fafc 100644
--- a/docs/content/commands/npm-ls.md
+++ b/docs/content/commands/npm-ls.md
@@ -44,7 +44,7 @@ npm@@VERSION@ /path/to/npm
It will print out extraneous, missing, and invalid packages.
If a project specifies git urls for dependencies these are shown
-in parentheses after the name@version to make it easier for users to
+in parentheses after the `name@version` to make it easier for users to
recognize potential forks of a project.
The tree shown is the logical dependency tree, based on package
@@ -62,7 +62,7 @@ disk would be roughly identical.
With the advent of automatic install-time deduplication of dependencies in
npm v3, the `ls` output was modified to display the logical dependency
graph as a tree structure, since this was more useful to most users.
-However, without using `npm ls -l`, it became impossible show _where_ a
+However, without using `npm ls -l`, it became impossible to show _where_ a
package was actually installed much of the time!
With the advent of automatic installation of `peerDependencies` in npm v7,