Skip to content

Commit 9c9d9e7

Browse files
nschonniBridgeAR
authored andcommitted
doc: heading levels should only increment by one
These are flagged by Markdownlint MD001 rule. PR-URL: #29331 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent d11ee19 commit 9c9d9e7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ release.
105105
</tr>
106106
</table>
107107

108-
### Notes
108+
## Notes
109109

110110
* The [Node.js Long Term Support plan](https://github.com/nodejs/Release) covers
111111
LTS releases.

doc/guides/node-postmortem-support.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ when analyzing its memory (either on a running process or a core dump). Node.js
66
provides this metadata in its builds for V8 and Node.js internal structures.
77

88

9-
### V8 Postmortem metadata
9+
## V8 Postmortem metadata
1010

1111
V8 prefixes all postmortem constants with `v8dbg_`, and they allow inspection of
1212
objects on the heap as well as object properties and references. V8 generates
1313
those symbols with a script (`deps/v8/tools/gen-postmortem-metadata.py`), and
1414
Node.js always includes these constants in the final build.
1515

16-
### Node.js Debug Symbols
16+
## Node.js Debug Symbols
1717

1818
Node.js prefixes all postmortem constants with `nodedbg_`, and they complement
1919
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
2222
`src/node_postmortem_metadata.cc`, and most of them are calculated at compile
2323
time.
2424

25-
#### Calculating offset of class members
25+
### Calculating offset of class members
2626

2727
Node.js constants referring to the offset of class members in memory
2828
are calculated at compile time.

0 commit comments

Comments
 (0)