Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 875c3d3

Browse filesBrowse 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 <michael_dawson@ca.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
1 parent 3737bd9 commit 875c3d3
Copy full SHA for 875c3d3
Expand file treeCollapse file tree

29 files changed

+0
-58
lines changed
Open diff view settings
Collapse file

‎CPP_STYLE_GUIDE.md‎

Copy file name to clipboardExpand all lines: CPP_STYLE_GUIDE.md
-2Lines changed: 0 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
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
Collapse file

‎README.md‎

Copy file name to clipboardExpand all lines: README.md
-2Lines changed: 0 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
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
Collapse file

‎benchmark/README.md‎

Copy file name to clipboardExpand all lines: benchmark/README.md
-2Lines changed: 0 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
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-
Collapse file

‎doc/api/documentation.md‎

Copy file name to clipboardExpand all lines: doc/api/documentation.md
-1Lines changed: 0 additions & 1 deletion
  • Display the source diff
  • Display the rich diff
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-->
Collapse file

‎doc/api/errors.md‎

Copy file name to clipboardExpand all lines: doc/api/errors.md
-2Lines changed: 0 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
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
Collapse file

‎doc/api/events.md‎

Copy file name to clipboardExpand all lines: doc/api/events.md
-1Lines changed: 0 additions & 1 deletion
  • Display the source diff
  • Display the rich diff
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();
Collapse file

‎doc/api/fs.md‎

Copy file name to clipboardExpand all lines: doc/api/fs.md
-1Lines changed: 0 additions & 1 deletion
  • Display the source diff
  • Display the rich diff
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
Collapse file

‎doc/api/globals.md‎

Copy file name to clipboardExpand all lines: doc/api/globals.md
-1Lines changed: 0 additions & 1 deletion
  • Display the source diff
  • Display the rich diff
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
Collapse file

‎doc/api/https.md‎

Copy file name to clipboardExpand all lines: doc/api/https.md
-1Lines changed: 0 additions & 1 deletion
  • Display the source diff
  • Display the rich diff
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`
Collapse file

‎doc/api/n-api.md‎

Copy file name to clipboardExpand all lines: doc/api/n-api.md
-2Lines changed: 0 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.