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

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2010-11-23 22:14:20 +0300
committerRyan Dahl <ry@tinyclouds.org>2010-11-24 01:09:59 +0300
commita2b3c865c92fd6394f717d06160ad01f8001ae3c (patch)
tree6e65761138392079a9dfabd0b02940e7bf870b1a /doc
parent03e5da8429fb4c8b6f7f57ed31403e28c489e277 (diff)
Correct reference to "process.Module"
Diffstat (limited to 'doc')
-rw-r--r--doc/api/globals.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/globals.markdown b/doc/api/globals.markdown
index 55e591282eb..db1850a420b 100644
--- a/doc/api/globals.markdown
+++ b/doc/api/globals.markdown
@@ -51,6 +51,6 @@ Example: running `node example.js` from `/Users/mjr`
### module
-A reference to the current module (of type `process.Module`). In particular
-`module.exports` is the same as the `exports` object. See `src/process.js`
+A reference to the current module. In particular
+`module.exports` is the same as the `exports` object. See `src/node.js`
for more information.