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
  • Loading branch information
watson committed Nov 12, 2016
1 parent c184f22 commit cf17cbf
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

1 comment on commit cf17cbf

@mmg131440
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To

Please sign in to comment.