Skip to content

Commit

Permalink
doc: simplify process.memoryUsage() example code
Browse files Browse the repository at this point in the history
Using util.inspect doesn't change the output in this case

PR-URL: #9560
Reviewed-By: Myles Borins <myles.borins@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
  • Loading branch information
watson authored and addaleax committed Nov 22, 2016
1 parent 58fc7a1 commit 92bd19e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions doc/api/process.md
Original file line number Diff line number Diff line change
Expand Up @@ -1182,9 +1182,7 @@ of the Node.js process measured in bytes.
For example, the code:

```js
const util = require('util');

console.log(util.inspect(process.memoryUsage()));
console.log(process.memoryUsage());
```

Will generate:
Expand Down

0 comments on commit 92bd19e

Please sign in to comment.