summaryrefslogtreecommitdiff
path: root/doc/api/v8.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/v8.md')
-rw-r--r--doc/api/v8.md13
1 files changed, 7 insertions, 6 deletions
diff --git a/doc/api/v8.md b/doc/api/v8.md
index ac46e5df58..f929fe6a03 100644
--- a/doc/api/v8.md
+++ b/doc/api/v8.md
@@ -108,11 +108,11 @@ Returns an object with the following properties:
* `peak_malloced_memory` {number}
* `does_zap_garbage` {number}
-`does_zap_garbage` is a 0/1 boolean, which signifies whether the `--zap_code_space`
-option is enabled or not. This makes V8 overwrite heap garbage with a bit
-pattern. The RSS footprint (resident memory set) gets bigger because it
-continuously touches all heap pages and that makes them less likely to get
-swapped out by the operating system.
+`does_zap_garbage` is a 0/1 boolean, which signifies whether the
+`--zap_code_space` option is enabled or not. This makes V8 overwrite heap
+garbage with a bit pattern. The RSS footprint (resident memory set) gets bigger
+because it continuously touches all heap pages and that makes them less likely
+to get swapped out by the operating system.
<!-- eslint-skip -->
```js
@@ -299,7 +299,8 @@ added: v8.0.0
#### new Deserializer(buffer)
-* `buffer` {Buffer|Uint8Array} A buffer returned by [`serializer.releaseBuffer()`][].
+* `buffer` {Buffer|Uint8Array} A buffer returned by
+ [`serializer.releaseBuffer()`][].
Creates a new `Deserializer` object.