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
diff options
context:
space:
mode:
authorCharlie Rudolph <charles.w.rudolph@gmail.com>2015-02-03 04:13:30 +0300
committerForrest L Norvell <forrest@npmjs.com>2015-02-06 11:41:58 +0300
commit09a1ab767084dd29243d741e6c308168a2a28067 (patch)
treef656dceaf14371134441259ec7cdfd2359ab2ebd
parenta4c7af9c692f250c0fd017397ed9514fc263b752 (diff)
Update npm-shrinkwrap.md
-rw-r--r--doc/cli/npm-shrinkwrap.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/cli/npm-shrinkwrap.md b/doc/cli/npm-shrinkwrap.md
index 05637f21d..e17afcd25 100644
--- a/doc/cli/npm-shrinkwrap.md
+++ b/doc/cli/npm-shrinkwrap.md
@@ -88,7 +88,7 @@ This generates npm-shrinkwrap.json, which will look something like this:
"version": "0.0.1",
"dependencies": {
"C": {
- "version": "0.1.0"
+ "version": "0.0.1"
}
}
}
@@ -101,7 +101,7 @@ installs a package with a npm-shrinkwrap.json file in the package
root, the shrinkwrap file (rather than package.json files) completely
drives the installation of that package and all of its dependencies
(recursively). So now the author publishes A@0.1.0, and subsequent
-installs of this package will use B@0.0.1 and C@0.1.0, regardless the
+installs of this package will use B@0.0.1 and C@0.0.1, regardless the
dependencies and versions listed in A's, B's, and C's package.json
files.