diff --git a/doc/api/process.md b/doc/api/process.md index 4a74eb90a71c83..7d30677e198b1c 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -1282,8 +1282,9 @@ Will generate: `heapTotal` and `heapUsed` refer to V8's memory usage. `external` refers to the memory usage of C++ objects bound to JavaScript -objects managed by V8. `rss`, Resident Set Size, is the total space allocated in -memory for the process, which includes the _heap_, _code segment_ and _stack_. +objects managed by V8. `rss`, Resident Set Size, is the amount of space +occupied in the main memory device (that is a subset of the total allocated +memory) for the process, which includes the _heap_, _code segment_ and _stack_. The _heap_ is where objects, strings and closures are stored. Variables are stored in the _stack_ and the actual JavaScript code resides in the