Skip to content

Commit

Permalink
doc: heading levels should only increment by one
Browse files Browse the repository at this point in the history
These are flagged by Markdownlint MD001 rule.

PR-URL: #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>
  • Loading branch information
nschonni authored and BridgeAR committed Sep 4, 2019
1 parent 5c3e49d commit bb72217
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ release.
</tr>
</table>

### Notes
## Notes

* The [Node.js Long Term Support plan](https://github.com/nodejs/Release) covers
LTS releases.
Expand Down
6 changes: 3 additions & 3 deletions doc/guides/node-postmortem-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down

0 comments on commit bb72217

Please sign in to comment.