From 03f52524e413d5ec7fbb1aec4b63b4e262537021 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Mon, 29 Oct 2018 22:04:25 -0700 Subject: doc: use Node.js instead of Node Per branding guidelines from the Foundation, use Node.js and not Node. PR-URL: https://github.com/nodejs/node/pull/23967 Reviewed-By: Richard Lau Reviewed-By: Trivikram Kamat Reviewed-By: Matheus Marchini Reviewed-By: Colin Ihrig Reviewed-By: James M Snell Reviewed-By: Franziska Hinkelmann Reviewed-By: Vse Mozhet Byt Reviewed-By: Luigi Pinca --- doc/api/modules.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'doc/api/modules.md') diff --git a/doc/api/modules.md b/doc/api/modules.md index 2475fa2755..c7d9d4b59c 100644 --- a/doc/api/modules.md +++ b/doc/api/modules.md @@ -376,8 +376,9 @@ Error: Cannot find module 'some-library' If the module identifier passed to `require()` is not a [core](#modules_core_modules) module, and does not begin with `'/'`, `'../'`, or `'./'`, then Node.js starts at the parent directory of the current module, and -adds `/node_modules`, and attempts to load the module from that location. Node -will not append `node_modules` to a path already ending in `node_modules`. +adds `/node_modules`, and attempts to load the module from that location. +Node.js will not append `node_modules` to a path already ending in +`node_modules`. If it is not found there, then it moves to the parent directory, and so on, until the root of the file system is reached. -- cgit v1.2.3