diff --git a/src/documentation/0026-npm-packages-local-global/index.md b/src/documentation/0026-npm-packages-local-global/index.md index 9e9442e869..7d041c7c4d 100644 --- a/src/documentation/0026-npm-packages-local-global/index.md +++ b/src/documentation/0026-npm-packages-local-global/index.md @@ -10,7 +10,7 @@ The main difference between local and global packages is this: * **local packages** are installed in the directory where you run `npm install `, and they are put in the `node_modules` folder under this directory * **global packages** are all put in a single place in your system (exactly where depends on your setup), regardless of where you run `npm install -g ` -In your code, they are both required in the same way: +In your code you can only require local packages: ```js require('package-name')