diff options
author | Maciej MaĆecki <maciej.malecki@notimplemented.org> | 2011-08-20 00:26:21 +0200 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2011-08-20 01:00:21 +0200 |
commit | e150bc4f2b73dce7b194edde72f89f11b9cddeae (patch) | |
tree | 2720cc039cb4b317c00d4452c1007be0f37c8739 | |
parent | b4712bf1ac261d37ddc2e6663cff0e0cd899a2bb (diff) | |
download | node-e150bc4f2b73dce7b194edde72f89f11b9cddeae.tar.gz |
docs: process.memoryUsage returns memory usage measured in bytes
-rw-r--r-- | doc/api/process.markdown | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/api/process.markdown b/doc/api/process.markdown index ca65f3e5d..28b7b51d4 100644 --- a/doc/api/process.markdown +++ b/doc/api/process.markdown @@ -280,7 +280,8 @@ What platform you're running on. `'linux2'`, `'darwin'`, etc. ### process.memoryUsage() -Returns an object describing the memory usage of the Node process. +Returns an object describing the memory usage of the Node process +measured in bytes. var util = require('util'); |