Skip to content

Commit 9e8edb0

Browse files
nschonniTrott
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 17a697c commit 9e8edb0

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
@@ -110,7 +110,7 @@ release.
110110
</tr>
111111
</table>
112112

113-
### Notes
113+
## Notes
114114

115115
* The [Node.js Long Term Support plan](https://github.com/nodejs/Release) covers
116116
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)