Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authormarsonya <akhil.marsonya27@gmail.com>2021-02-24 21:34:21 +0300
committerMichaƫl Zasso <targos@protonmail.com>2021-02-28 16:46:25 +0300
commit3b737e63ce4a13baac72a3674b22a01f210eb48d (patch)
tree082d0949521007c350e8fdca8b079bc24a195dd1 /doc
parentfb5e5bed21ab4d30ce3f51006ca64450a71bb2b6 (diff)
doc: apply sentence case to headers in doc/guides
PR-URL: https://github.com/nodejs/node/pull/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>
Diffstat (limited to 'doc')
-rw-r--r--doc/guides/commit-queue.md6
-rw-r--r--doc/guides/diagnostic-tooling-support-tiers.md2
-rw-r--r--doc/guides/investigating_native_memory_leak.md2
-rw-r--r--doc/guides/maintaining-icu.md8
-rw-r--r--doc/guides/maintaining-npm.md2
-rw-r--r--doc/guides/maintaining-openssl.md2
-rw-r--r--doc/guides/maintaining-root-certs.md2
-rw-r--r--doc/guides/maintaining-the-build-files.md2
8 files changed, 13 insertions, 13 deletions
diff --git a/doc/guides/commit-queue.md b/doc/guides/commit-queue.md
index 33f4924f7fd..8c3fca28ec6 100644
--- a/doc/guides/commit-queue.md
+++ b/doc/guides/commit-queue.md
@@ -1,4 +1,4 @@
-# Commit Queue
+# Commit queue
> Stability: 1 - Experimental
@@ -37,7 +37,7 @@ From a high-level, the Commit Queue works as follow:
3. Close the PR
4. Go to next PR in the queue
-## Current Limitations
+## Current limitations
The Commit Queue feature is still in early stages, and as such it might not
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
`Landed in ...` comment in the PR, and then will close it. Iteration continues
until all PRs have done the steps above.
-## Reverting Broken Commits
+## Reverting broken commits
Reverting broken commits is done manually by Collaborators, just like when
commits are landed manually via `git node land`. An easy way to revert is a
diff --git a/doc/guides/diagnostic-tooling-support-tiers.md b/doc/guides/diagnostic-tooling-support-tiers.md
index 1bff8774562..7672606c8fa 100644
--- a/doc/guides/diagnostic-tooling-support-tiers.md
+++ b/doc/guides/diagnostic-tooling-support-tiers.md
@@ -1,4 +1,4 @@
-# Diagnostic Tooling Support Tiers
+# Diagnostic tooling support tiers
Diagnostic tooling is important to the consumers of Node.js. It is used both
in development and in production in order to investigate problems. The failure
diff --git a/doc/guides/investigating_native_memory_leak.md b/doc/guides/investigating_native_memory_leak.md
index f0a156286e3..55ba1b1ec3d 100644
--- a/doc/guides/investigating_native_memory_leak.md
+++ b/doc/guides/investigating_native_memory_leak.md
@@ -1,4 +1,4 @@
-# Investigating Memory Leaks with valgrind
+# Investigating memory leaks with valgrind
A Node.js process may run out of memory due to excessive consumption of
native memory. Native Memory is memory which is not managed by the
diff --git a/doc/guides/maintaining-icu.md b/doc/guides/maintaining-icu.md
index 8de05a085bf..bf000e5fd90 100644
--- a/doc/guides/maintaining-icu.md
+++ b/doc/guides/maintaining-icu.md
@@ -33,7 +33,7 @@ $ node -p process.versions
}
```
-### Time Zone Data
+### Time zone data
Time zone data files are updated independently of ICU CLDR data. ICU and its
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.
All modern versions of Node.js use the version 44 ABI of the time zone data
files.
-#### Example: Updating the ICU `.dat` File
+#### Example: updating the ICU `.dat` file
* Decompress `deps/icu/source/data/in/icudt##l.dat.bz2`, where `##` is
the ICU major version number.
@@ -68,7 +68,7 @@ files.
* Build, test, verifying `process.versions.tz` matches the desired version.
* Create a new minor version release.
-## Release Schedule
+## Release schedule
ICU typically has >1 release a year, particularly coinciding with a major
release of [Unicode][]. The current release schedule is available on the [ICU][]
@@ -237,7 +237,7 @@ You should see a message such as:
INFO: Using floating patch "tools/icu/patches/63/source/tools/toolutil/pkg_genc.cpp" from "tools/icu"
```
-### Clean Up
+### Clean up
Any patches older than the minimum version given in `tools/icu/icu_versions.json`
ought to be deleted, because they will never be used.
diff --git a/doc/guides/maintaining-npm.md b/doc/guides/maintaining-npm.md
index bf789af65b3..5536fd513f8 100644
--- a/doc/guides/maintaining-npm.md
+++ b/doc/guides/maintaining-npm.md
@@ -38,7 +38,7 @@ $ git commit -m "doc: update npm LICENSE using license-builder.sh"
Note: please ensure you are only making the updates that are changed by npm.
-## Step 4: Apply Whitespace fix
+## Step 4: Apply whitespace fix
```console
$ git rebase --whitespace=fix master
diff --git a/doc/guides/maintaining-openssl.md b/doc/guides/maintaining-openssl.md
index 0d5ed344904..f40cac3d2d7 100644
--- a/doc/guides/maintaining-openssl.md
+++ b/doc/guides/maintaining-openssl.md
@@ -22,7 +22,7 @@ currently need to generate three PRs as follows:
* `nasm` (<https://www.nasm.us/>) Version 2.11 or higher is needed.
* GNU `as` in binutils. Version 2.26 or higher is needed.
-## 0. Check Requirements
+## 0. Check requirements
```console
% perl -v
diff --git a/doc/guides/maintaining-root-certs.md b/doc/guides/maintaining-root-certs.md
index e14e2d8eca0..8ab3764aac5 100644
--- a/doc/guides/maintaining-root-certs.md
+++ b/doc/guides/maintaining-root-certs.md
@@ -1,4 +1,4 @@
-# Maintaining the Root Certificates
+# Maintaining the root certificates
Node.js contains a compiled-in set of root certificates used as trust anchors
for TLS certificate validation.
diff --git a/doc/guides/maintaining-the-build-files.md b/doc/guides/maintaining-the-build-files.md
index 433b387e5ee..548441dc012 100644
--- a/doc/guides/maintaining-the-build-files.md
+++ b/doc/guides/maintaining-the-build-files.md
@@ -1,4 +1,4 @@
-# Maintaining the Build files
+# Maintaining the build files
This document explains how to maintain the build files in the codebase.