Skip to content

Commit

Permalink
doc: fix swapedOut typo
Browse files Browse the repository at this point in the history
This corrects a typo in the process.resourceUsage() docs. The
field is named swappedOut, not swapedOut.

PR-URL: #28497
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
  • Loading branch information
cjihrig authored and targos committed Jul 2, 2019
1 parent 9c2f642 commit 4106271
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/api/process.md
Original file line number Diff line number Diff line change
Expand Up @@ -1829,7 +1829,7 @@ added: REPLACEME
* `unsharedStackSize` {integer}
* `minorPageFault` {integer}
* `majorPageFault` {integer}
* `swapedOut` {integer}
* `swappedOut` {integer}
* `fsRead` {integer}
* `fsWrite` {integer}
* `ipcSent` {integer}
Expand Down Expand Up @@ -1888,7 +1888,7 @@ console.log(process.resourceUsage());
unsharedStackSize: 0,
minorPageFault: 2469,
majorPageFault: 0,
swapedOut: 0,
swappedOut: 0,
fsRead: 0,
fsWrite: 8,
ipcSent: 0,
Expand Down

0 comments on commit 4106271

Please sign in to comment.