Skip to content

Commit 834f637

Browse files
marsonyatargos
authored andcommittedFeb 28, 2021
doc: apply sentence case to headers in doc/guides
PR-URL: #37478 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 7ac0820 commit 834f637

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed
 

‎doc/guides/technical-values.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Some key elements of this include:
6565
* Low-friction policies and processes
6666
* Good CI and tooling to make maintainers productive
6767

68-
### 5 - Up to date Technology and APIs
68+
### 5 - Up to date technology and APIs
6969
We value providing developers with modern APIs and technologies
7070
following existing standards whenever possible.
7171
Some key elements of this include:

‎doc/guides/using-internal-errors.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Using the internal/errors.js Module
1+
# Using the internal/errors.js module
22

33
## What is internal/errors.js
44

‎doc/guides/writing-tests.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ argument. It is not a good idea to simply pass `common.mustCall()` to those
229229
because `common.mustCall()` will ignore the error. Use `common.mustSucceed()`
230230
instead.
231231

232-
#### Countdown Module
232+
#### Countdown module
233233

234234
The common [Countdown module](https://github.com/nodejs/node/tree/HEAD/test/common#countdown-module)
235235
provides a simple countdown mechanism for tests that require a particular
@@ -345,7 +345,7 @@ in each release, such as:
345345
* Template literals over string concatenation
346346
* Arrow functions when appropriate
347347

348-
## Naming Test Files
348+
## Naming test files
349349

350350
Test files are named using kebab casing. The first component of the name is
351351
`test`. The second is the module or subsystem being tested. The third is usually
@@ -357,13 +357,13 @@ named `test-process-before-exit.js`. If the test specifically checked that arrow
357357
functions worked correctly with the `beforeExit` event, then it might be named
358358
`test-process-before-exit-arrow-functions.js`.
359359

360-
## Imported Tests
360+
## Imported tests
361361

362-
### Web Platform Tests
362+
### Web platform tests
363363

364364
See [`test/wpt`](../../test/wpt/README.md) for more information.
365365

366-
## C++ Unit test
366+
## C++ unit test
367367

368368
C++ code can be tested using [Google Test][]. Most features in Node.js can be
369369
tested using the methods described previously in this document. But there are
@@ -444,7 +444,7 @@ and tearing it down after the tests have finished.
444444
It also contains a helper to create arguments to be passed into Node.js. It
445445
will depend on what is being tested if this is required or not.
446446

447-
### Test Coverage
447+
### Test coverage
448448

449449
To generate a test coverage report, see the
450450
[Test Coverage section of the Building guide][].

0 commit comments

Comments
 (0)
Please sign in to comment.