Skip to content

Commit 3b737e6

Browse files
marsonyatargos
authored andcommitted
doc: apply sentence case to headers in doc/guides
PR-URL: #37506 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Pooja D P <Pooja.D.P@ibm.com> Reviewed-By: Harshitha K P <harshitha014@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
1 parent fb5e5be commit 3b737e6

8 files changed

+13
-13
lines changed

doc/guides/commit-queue.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Commit Queue
1+
# Commit queue
22

33
> Stability: 1 - Experimental
44
@@ -37,7 +37,7 @@ From a high-level, the Commit Queue works as follow:
3737
3. Close the PR
3838
4. Go to next PR in the queue
3939

40-
## Current Limitations
40+
## Current limitations
4141

4242
The Commit Queue feature is still in early stages, and as such it might not
4343
work for more complex Pull Requests. These are the currently known limitations
@@ -106,7 +106,7 @@ If no errors happen during `git node land`, the script will use the
106106
`Landed in ...` comment in the PR, and then will close it. Iteration continues
107107
until all PRs have done the steps above.
108108

109-
## Reverting Broken Commits
109+
## Reverting broken commits
110110

111111
Reverting broken commits is done manually by Collaborators, just like when
112112
commits are landed manually via `git node land`. An easy way to revert is a

doc/guides/diagnostic-tooling-support-tiers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Diagnostic Tooling Support Tiers
1+
# Diagnostic tooling support tiers
22

33
Diagnostic tooling is important to the consumers of Node.js. It is used both
44
in development and in production in order to investigate problems. The failure

doc/guides/investigating_native_memory_leak.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Investigating Memory Leaks with valgrind
1+
# Investigating memory leaks with valgrind
22

33
A Node.js process may run out of memory due to excessive consumption of
44
native memory. Native Memory is memory which is not managed by the

doc/guides/maintaining-icu.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ $ node -p process.versions
3333
}
3434
```
3535

36-
### Time Zone Data
36+
### Time zone data
3737

3838
Time zone data files are updated independently of ICU CLDR data. ICU and its
3939
main data files do not need to be upgraded in order to apply time zone data file
@@ -50,7 +50,7 @@ in the icu/icu-data repository.
5050
All modern versions of Node.js use the version 44 ABI of the time zone data
5151
files.
5252

53-
#### Example: Updating the ICU `.dat` File
53+
#### Example: updating the ICU `.dat` file
5454

5555
* Decompress `deps/icu/source/data/in/icudt##l.dat.bz2`, where `##` is
5656
the ICU major version number.
@@ -68,7 +68,7 @@ files.
6868
* Build, test, verifying `process.versions.tz` matches the desired version.
6969
* Create a new minor version release.
7070

71-
## Release Schedule
71+
## Release schedule
7272

7373
ICU typically has >1 release a year, particularly coinciding with a major
7474
release of [Unicode][]. The current release schedule is available on the [ICU][]
@@ -237,7 +237,7 @@ You should see a message such as:
237237
INFO: Using floating patch "tools/icu/patches/63/source/tools/toolutil/pkg_genc.cpp" from "tools/icu"
238238
```
239239

240-
### Clean Up
240+
### Clean up
241241

242242
Any patches older than the minimum version given in `tools/icu/icu_versions.json`
243243
ought to be deleted, because they will never be used.

doc/guides/maintaining-npm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ $ git commit -m "doc: update npm LICENSE using license-builder.sh"
3838

3939
Note: please ensure you are only making the updates that are changed by npm.
4040

41-
## Step 4: Apply Whitespace fix
41+
## Step 4: Apply whitespace fix
4242

4343
```console
4444
$ git rebase --whitespace=fix master

doc/guides/maintaining-openssl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ currently need to generate three PRs as follows:
2222
* `nasm` (<https://www.nasm.us/>) Version 2.11 or higher is needed.
2323
* GNU `as` in binutils. Version 2.26 or higher is needed.
2424

25-
## 0. Check Requirements
25+
## 0. Check requirements
2626

2727
```console
2828
% perl -v

doc/guides/maintaining-root-certs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Maintaining the Root Certificates
1+
# Maintaining the root certificates
22

33
Node.js contains a compiled-in set of root certificates used as trust anchors
44
for TLS certificate validation.

doc/guides/maintaining-the-build-files.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Maintaining the Build files
1+
# Maintaining the build files
22

33
This document explains how to maintain the build files in the codebase.
44

0 commit comments

Comments
 (0)