summaryrefslogtreecommitdiff
path: root/doc/guides
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2019-08-27 00:07:14 -0400
committerRich Trott <rtrott@gmail.com>2019-08-28 22:47:21 -0700
commit9e8edb0d7918c6dab4426e408582d98f79a8e270 (patch)
tree622afdfd9ba94077ca5a59cda11efd8cec6d9a63 /doc/guides
parent17a697c794f2525c9789fd92c2206a1b634cf473 (diff)
downloadandroid-node-v8-9e8edb0d7918c6dab4426e408582d98f79a8e270.tar.gz
android-node-v8-9e8edb0d7918c6dab4426e408582d98f79a8e270.tar.bz2
android-node-v8-9e8edb0d7918c6dab4426e408582d98f79a8e270.zip
doc: heading levels should only increment by one
These are flagged by Markdownlint MD001 rule. PR-URL: https://github.com/nodejs/node/pull/29331 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'doc/guides')
-rw-r--r--doc/guides/node-postmortem-support.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/guides/node-postmortem-support.md b/doc/guides/node-postmortem-support.md
index 9a4370016c..bc9ff51949 100644
--- a/doc/guides/node-postmortem-support.md
+++ b/doc/guides/node-postmortem-support.md
@@ -6,14 +6,14 @@ when analyzing its memory (either on a running process or a core dump). Node.js
provides this metadata in its builds for V8 and Node.js internal structures.
-### V8 Postmortem metadata
+## V8 Postmortem metadata
V8 prefixes all postmortem constants with `v8dbg_`, and they allow inspection of
objects on the heap as well as object properties and references. V8 generates
those symbols with a script (`deps/v8/tools/gen-postmortem-metadata.py`), and
Node.js always includes these constants in the final build.
-### Node.js Debug Symbols
+## Node.js Debug Symbols
Node.js prefixes all postmortem constants with `nodedbg_`, and they complement
V8 constants by providing ways to inspect Node.js-specific structures, like
@@ -22,7 +22,7 @@ V8 constants by providing ways to inspect Node.js-specific structures, like
`src/node_postmortem_metadata.cc`, and most of them are calculated at compile
time.
-#### Calculating offset of class members
+### Calculating offset of class members
Node.js constants referring to the offset of class members in memory
are calculated at compile time.