From 899e2704c8feb5b5b98b0a836ef5bd1947f9e990 Mon Sep 17 00:00:00 2001 From: David Marr Date: Tue, 10 Feb 2015 12:05:16 -0800 Subject: Fix npm link documentation typo. --- doc/cli/npm-link.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc') diff --git a/doc/cli/npm-link.md b/doc/cli/npm-link.md index 786ad815d..a48fb9778 100644 --- a/doc/cli/npm-link.md +++ b/doc/cli/npm-link.md @@ -38,7 +38,7 @@ For example: npm link redis # link-install the package Now, any changes to ~/projects/node-redis will be reflected in -~/projects/node-bloggy/node_modules/redis/ +~/projects/node-bloggy/node_modules/node-redis/ You may also shortcut the two steps in one. For example, to do the above use-case in a shorter way: @@ -49,7 +49,7 @@ above use-case in a shorter way: The second line is the equivalent of doing: (cd ../node-redis; npm link) - npm link redis + npm link node-redis That is, it first creates a global link, and then links the global installation target into your project's `node_modules` folder. -- cgit v1.2.3