Skip to content

Commit 6734782

Browse files
nschonniBridgeAR
authored andcommitted
doc: remove multiple consecutive blank lines
These are rendered as single breaks. Addresses Markdownlint MD012 rule. PR-URL: #29352 Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
1 parent e5a9a85 commit 6734782

29 files changed

+0
-58
lines changed

CPP_STYLE_GUIDE.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
* [Avoid throwing JavaScript errors in C++ methods](#avoid-throwing-javascript-errors-in-c)
3030
* [Avoid throwing JavaScript errors in nested C++ methods](#avoid-throwing-javascript-errors-in-nested-c-methods)
3131

32-
3332
## Guides and References
3433

3534
The Node.js C++ codebase strives to be consistent in its use of language
@@ -385,7 +384,6 @@ side effects.
385384
Node.js is built [without C++ exception handling][], so code using `throw` or
386385
even `try` and `catch` **will** break.
387386

388-
389387
[C++ Core Guidelines]: http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines
390388
[Google C++ Style Guide]: https://google.github.io/styleguide/cppguide.html
391389
[Google’s `cpplint`]: https://github.com/google/styleguide

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ The Node.js project uses an [open governance model](./GOVERNANCE.md). The
1616

1717
**This project is bound by a [Code of Conduct][].**
1818

19-
2019
# Table of Contents
2120

2221
* [Support](#support)
@@ -89,7 +88,6 @@ Version-specific documentation is available in each release directory in the
8988
_docs_ subdirectory. Version-specific documentation is also at
9089
<https://nodejs.org/download/docs/>.
9190

92-
9391
### Verifying Binaries
9492

9593
Download directories contain a `SHASUMS256.txt` file with SHA checksums for the

benchmark/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ See [the guide on writing benchmarks](../doc/guides/writing-and-running-benchmar
8383
The default benchmarker used to run HTTP benchmarks.
8484
See [the guide on writing HTTP benchmarks](../doc/guides/writing-and-running-benchmarks.md#creating-an-http-benchmark).
8585

86-
8786
### PORT
8887

8988
The default port used to run HTTP benchmarks.
@@ -95,4 +94,3 @@ Used in special benchmarks that can't use `createBenchmark` and the object
9594
it returns to accomplish what they need. This function reports timing
9695
data to the parent process (usually created by running `compare.js`, `run.js` or
9796
`scatter.js`).
98-

doc/api/documentation.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ Node.js is a JavaScript runtime built on the [V8 JavaScript engine][].
1212
Report errors in this documentation in [the issue tracker][]. See
1313
[the contributing guide][] for directions on how to submit pull requests.
1414

15-
1615
## Stability Index
1716

1817
<!--type=misc-->

doc/api/errors.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,6 @@ The OpenSSL library the error originates in.
608608

609609
A human-readable string describing the reason for the error.
610610

611-
612611
<a id="nodejs-error-codes"></a>
613612
## Node.js Error Codes
614613

@@ -2164,7 +2163,6 @@ removed: v10.0.0
21642163

21652164
The `repl` module was unable to parse data from the REPL history file.
21662165

2167-
21682166
<a id="ERR_STDERR_CLOSE"></a>
21692167
### ERR_STDERR_CLOSE
21702168
<!-- YAML

doc/api/events.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,6 @@ to each.
307307

308308
Returns `true` if the event had listeners, `false` otherwise.
309309

310-
311310
```js
312311
const EventEmitter = require('events');
313312
const myEmitter = new EventEmitter();

doc/api/fs.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,6 @@ added: v10.10.0
357357

358358
Returns `true` if the `fs.Dirent` object describes a symbolic link.
359359

360-
361360
### dirent.name
362361
<!-- YAML
363362
added: v10.10.0

doc/api/globals.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,6 @@ added: v11.0.0
195195

196196
The WHATWG `TextEncoder` class. See the [`TextEncoder`][] section.
197197

198-
199198
## URL
200199
<!-- YAML
201200
added: v10.0.0

doc/api/https.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ See [`http.Server#headersTimeout`][].
7575
Starts the HTTPS server listening for encrypted connections.
7676
This method is identical to [`server.listen()`][] from [`net.Server`][].
7777

78-
7978
### server.maxHeadersCount
8079

8180
- {number} **Default:** `2000`

doc/api/n-api.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2429,7 +2429,6 @@ returns `napi_bigint_expected`.
24292429
This API returns the C `int64_t` primitive equivalent of the given JavaScript
24302430
`BigInt`. If needed it will truncate the value, setting `lossless` to `false`.
24312431

2432-
24332432
#### napi_get_value_bigint_uint64
24342433
<!-- YAML
24352434
added: v10.7.0
@@ -2457,7 +2456,6 @@ returns `napi_bigint_expected`.
24572456
This API returns the C `uint64_t` primitive equivalent of the given JavaScript
24582457
`BigInt`. If needed it will truncate the value, setting `lossless` to `false`.
24592458

2460-
24612459
#### napi_get_value_bigint_words
24622460
<!-- YAML
24632461
added: v10.7.0

0 commit comments

Comments
 (0)