Skip to content

Commit 5a730b5

Browse files
aduh95danielleadams
authored andcommitted
doc: sort md references in ASCII order
Refs: #35244 PR-URL: #35191 Fixes: #35189 Reviewed-By: Derek Lewis <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Rich Trott <[email protected]>
1 parent ce789f1 commit 5a730b5

39 files changed

+218
-218
lines changed

doc/api/addons.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1356,11 +1356,11 @@ console.log(result);
13561356
// Prints: 30
13571357
```
13581358

1359-
[`Worker`]: worker_threads.md#worker_threads_class_worker
13601359
[Electron]: https://electronjs.org/
13611360
[Embedder's Guide]: https://github.com/v8/v8/wiki/Embedder's%20Guide
13621361
[Linking to libraries included with Node.js]: #addons_linking_to_libraries_included_with_node_js
13631362
[Native Abstractions for Node.js]: https://github.com/nodejs/nan
1363+
[`Worker`]: worker_threads.md#worker_threads_class_worker
13641364
[bindings]: https://github.com/TooTallNate/node-bindings
13651365
[download]: https://github.com/nodejs/node-addon-examples
13661366
[examples]: https://github.com/nodejs/nan/tree/master/examples/

doc/api/assert.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1556,6 +1556,11 @@ assert.throws(throwingFirst, /Second$/);
15561556
Due to the confusing error-prone notation, avoid a string as the second
15571557
argument.
15581558

1559+
[Abstract Equality Comparison]: https://tc39.github.io/ecma262/#sec-abstract-equality-comparison
1560+
[Object wrappers]: https://developer.mozilla.org/en-US/docs/Glossary/Primitive#Primitive_wrapper_objects_in_JavaScript
1561+
[Object.prototype.toString()]: https://tc39.github.io/ecma262/#sec-object.prototype.tostring
1562+
[SameValue Comparison]: https://tc39.github.io/ecma262/#sec-samevalue
1563+
[Strict Equality Comparison]: https://tc39.github.io/ecma262/#sec-strict-equality-comparison
15591564
[`AssertionError`]: #assert_class_assert_assertionerror
15601565
[`Class`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes
15611566
[`ERR_INVALID_RETURN_VALUE`]: errors.md#errors_err_invalid_return_value
@@ -1585,10 +1590,5 @@ argument.
15851590
[`tracker.calls()`]: #assert_tracker_calls_fn_exact
15861591
[`tracker.verify()`]: #assert_tracker_verify
15871592
[strict assertion mode]: #assert_strict_assertion_mode
1588-
[Abstract Equality Comparison]: https://tc39.github.io/ecma262/#sec-abstract-equality-comparison
1589-
[Object wrappers]: https://developer.mozilla.org/en-US/docs/Glossary/Primitive#Primitive_wrapper_objects_in_JavaScript
1590-
[Object.prototype.toString()]: https://tc39.github.io/ecma262/#sec-object.prototype.tostring
1591-
[SameValue Comparison]: https://tc39.github.io/ecma262/#sec-samevalue
1592-
[Strict Equality Comparison]: https://tc39.github.io/ecma262/#sec-strict-equality-comparison
15931593
[enumerable "own" properties]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Enumerability_and_ownership_of_properties
15941594
[prototype-spec]: https://tc39.github.io/ecma262/#sec-ordinary-object-internal-methods-and-internal-slots

doc/api/async_hooks.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1167,16 +1167,16 @@ If you need to keep using callback-based API, or your code assumes
11671167
a custom thenable implementation, use the [`AsyncResource`][] class
11681168
to associate the asynchronous operation with the correct execution context.
11691169

1170+
[Hook Callbacks]: #async_hooks_hook_callbacks
1171+
[PromiseHooks]: https://docs.google.com/document/d/1rda3yKGHimKIhg5YeoAmCOtyURgsbTH_qaYR79FELlk/edit
11701172
[`AsyncResource`]: #async_hooks_class_asyncresource
11711173
[`after` callback]: #async_hooks_after_asyncid
11721174
[`before` callback]: #async_hooks_before_asyncid
11731175
[`destroy` callback]: #async_hooks_destroy_asyncid
11741176
[`init` callback]: #async_hooks_init_asyncid_type_triggerasyncid_resource
11751177
[`promiseResolve` callback]: #async_hooks_promiseresolve_asyncid
11761178
[`EventEmitter`]: events.md#events_class_eventemitter
1177-
[Hook Callbacks]: #async_hooks_hook_callbacks
1178-
[PromiseHooks]: https://docs.google.com/document/d/1rda3yKGHimKIhg5YeoAmCOtyURgsbTH_qaYR79FELlk/edit
11791179
[`Stream`]: stream.md#stream_stream
11801180
[`Worker`]: worker_threads.md#worker_threads_class_worker
1181-
[promise execution tracking]: #async_hooks_promise_execution_tracking
11821181
[`util.promisify()`]: util.md#util_util_promisify_original
1182+
[promise execution tracking]: #async_hooks_promise_execution_tracking

doc/api/buffer.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3261,7 +3261,12 @@ While there are clear performance advantages to using
32613261
[`Buffer.allocUnsafe()`][], extra care *must* be taken in order to avoid
32623262
introducing security vulnerabilities into an application.
32633263

3264+
[ASCII]: https://en.wikipedia.org/wiki/ASCII
3265+
[Base64]: https://en.wikipedia.org/wiki/Base64
3266+
[ISO-8859-1]: https://en.wikipedia.org/wiki/ISO-8859-1
32643267
[RFC 4648, Section 5]: https://tools.ietf.org/html/rfc4648#section-5
3268+
[UTF-16]: https://en.wikipedia.org/wiki/UTF-16
3269+
[UTF-8]: https://en.wikipedia.org/wiki/UTF-8
32653270
[WHATWG Encoding Standard]: https://encoding.spec.whatwg.org/
32663271
[`ArrayBuffer`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer
32673272
[`Buffer.alloc()`]: #buffer_static_method_buffer_alloc_size_fill_encoding
@@ -3281,10 +3286,10 @@ introducing security vulnerabilities into an application.
32813286
[`String#indexOf()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf
32823287
[`String#lastIndexOf()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/lastIndexOf
32833288
[`String.prototype.length`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/length
3284-
[`TypedArray.from()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/from
32853289
[`TypedArray#set()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/set
32863290
[`TypedArray#slice()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/slice
32873291
[`TypedArray#subarray()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/subarray
3292+
[`TypedArray.from()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/from
32883293
[`TypedArray`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
32893294
[`Uint8Array`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array
32903295
[`buf.buffer`]: #buffer_buf_buffer
@@ -3301,11 +3306,6 @@ introducing security vulnerabilities into an application.
33013306
[`buffer.constants.MAX_STRING_LENGTH`]: #buffer_buffer_constants_max_string_length
33023307
[`buffer.kMaxLength`]: #buffer_buffer_kmaxlength
33033308
[`util.inspect()`]: util.md#util_util_inspect_object_options
3304-
[ASCII]: https://en.wikipedia.org/wiki/ASCII
3305-
[Base64]: https://en.wikipedia.org/wiki/Base64
3306-
[ISO-8859-1]: https://en.wikipedia.org/wiki/ISO-8859-1
3307-
[UTF-8]: https://en.wikipedia.org/wiki/UTF-8
3308-
[UTF-16]: https://en.wikipedia.org/wiki/UTF-16
33093309
[binary strings]: https://developer.mozilla.org/en-US/docs/Web/API/DOMString/Binary
33103310
[endianness]: https://en.wikipedia.org/wiki/Endianness
33113311
[iterator]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols

doc/api/child_process.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1580,6 +1580,9 @@ Therefore, this feature requires opting in by setting the
15801580
or [`child_process.fork()`][].
15811581

15821582
[Advanced serialization]: #child_process_advanced_serialization
1583+
[Default Windows shell]: #child_process_default_windows_shell
1584+
[HTML structured clone algorithm]: https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm
1585+
[Shell requirements]: #child_process_shell_requirements
15831586
[`'disconnect'`]: process.md#process_event_disconnect
15841587
[`'error'`]: #child_process_event_error
15851588
[`'exit'`]: #child_process_event_exit
@@ -1612,8 +1615,5 @@ or [`child_process.fork()`][].
16121615
[`subprocess.stdio`]: #child_process_subprocess_stdio
16131616
[`subprocess.stdout`]: #child_process_subprocess_stdout
16141617
[`util.promisify()`]: util.md#util_util_promisify_original
1615-
[Default Windows shell]: #child_process_default_windows_shell
1616-
[HTML structured clone algorithm]: https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm
1617-
[Shell requirements]: #child_process_shell_requirements
16181618
[synchronous counterparts]: #child_process_synchronous_process_creation
16191619
[v8.serdes]: v8.md#v8_serialization_api

doc/api/cluster.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -873,6 +873,8 @@ socket.on('data', (id) => {
873873
});
874874
```
875875

876+
[Advanced serialization for `child_process`]: child_process.md#child_process_advanced_serialization
877+
[Child Process module]: child_process.md#child_process_child_process_fork_modulepath_args_options
876878
[`.fork()`]: #cluster_cluster_fork_env
877879
[`.setupMaster()`]: #cluster_cluster_setupmaster_settings
878880
[`ChildProcess.send()`]: child_process.md#child_process_subprocess_send_message_sendhandle_options_callback
@@ -885,5 +887,3 @@ socket.on('data', (id) => {
885887
[`process` event: `'message'`]: process.md#process_event_message
886888
[`server.close()`]: net.md#net_event_close
887889
[`worker.exitedAfterDisconnect`]: #cluster_worker_exitedafterdisconnect
888-
[Advanced serialization for `child_process`]: child_process.md#child_process_advanced_serialization
889-
[Child Process module]: child_process.md#child_process_child_process_fork_modulepath_args_options

doc/api/crypto.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3544,6 +3544,23 @@ See the [list of SSL OP Flags][] for details.
35443544
</tr>
35453545
</table>
35463546

3547+
[AEAD algorithms]: https://en.wikipedia.org/wiki/Authenticated_encryption
3548+
[CCM mode]: #crypto_ccm_mode
3549+
[Caveats]: #crypto_support_for_weak_or_compromised_algorithms
3550+
[Crypto constants]: #crypto_crypto_constants_1
3551+
[HTML 5.2]: https://www.w3.org/TR/html52/changes.html#features-removed
3552+
[HTML5's `keygen` element]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/keygen
3553+
[NIST SP 800-131A]: https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-131Ar1.pdf
3554+
[NIST SP 800-132]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf
3555+
[NIST SP 800-38D]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38d.pdf
3556+
[Nonce-Disrespecting Adversaries]: https://github.com/nonce-disrespect/nonce-disrespect
3557+
[OpenSSL's SPKAC implementation]: https://www.openssl.org/docs/man1.1.0/apps/openssl-spkac.html
3558+
[RFC 1421]: https://www.rfc-editor.org/rfc/rfc1421.txt
3559+
[RFC 2412]: https://www.rfc-editor.org/rfc/rfc2412.txt
3560+
[RFC 3526]: https://www.rfc-editor.org/rfc/rfc3526.txt
3561+
[RFC 3610]: https://www.rfc-editor.org/rfc/rfc3610.txt
3562+
[RFC 4055]: https://www.rfc-editor.org/rfc/rfc4055.txt
3563+
[RFC 5208]: https://www.rfc-editor.org/rfc/rfc5208.txt
35473564
[`Buffer`]: buffer.md
35483565
[`EVP_BytesToKey`]: https://www.openssl.org/docs/man1.1.0/crypto/EVP_BytesToKey.html
35493566
[`KeyObject`]: #crypto_class_keyobject
@@ -3594,27 +3611,10 @@ See the [list of SSL OP Flags][] for details.
35943611
[`util.promisify()`]: util.md#util_util_promisify_original
35953612
[`verify.update()`]: #crypto_verify_update_data_inputencoding
35963613
[`verify.verify()`]: #crypto_verify_verify_object_signature_signatureencoding
3597-
[AEAD algorithms]: https://en.wikipedia.org/wiki/Authenticated_encryption
3598-
[CCM mode]: #crypto_ccm_mode
3599-
[Caveats]: #crypto_support_for_weak_or_compromised_algorithms
3600-
[Crypto constants]: #crypto_crypto_constants_1
3601-
[HTML 5.2]: https://www.w3.org/TR/html52/changes.html#features-removed
3602-
[HTML5's `keygen` element]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/keygen
3603-
[NIST SP 800-131A]: https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-131Ar1.pdf
3604-
[NIST SP 800-132]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf
3605-
[NIST SP 800-38D]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38d.pdf
3606-
[modulo bias]: https://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle#Modulo_bias
3607-
[Nonce-Disrespecting Adversaries]: https://github.com/nonce-disrespect/nonce-disrespect
3608-
[OpenSSL's SPKAC implementation]: https://www.openssl.org/docs/man1.1.0/apps/openssl-spkac.html
3609-
[RFC 1421]: https://www.rfc-editor.org/rfc/rfc1421.txt
3610-
[RFC 2412]: https://www.rfc-editor.org/rfc/rfc2412.txt
3611-
[RFC 3526]: https://www.rfc-editor.org/rfc/rfc3526.txt
3612-
[RFC 3610]: https://www.rfc-editor.org/rfc/rfc3610.txt
3613-
[RFC 4055]: https://www.rfc-editor.org/rfc/rfc4055.txt
3614-
[RFC 5208]: https://www.rfc-editor.org/rfc/rfc5208.txt
36153614
[encoding]: buffer.md#buffer_buffers_and_character_encodings
36163615
[initialization vector]: https://en.wikipedia.org/wiki/Initialization_vector
36173616
[list of SSL OP Flags]: https://wiki.openssl.org/index.php/List_of_SSL_OP_Flags#Table_of_Options
3617+
[modulo bias]: https://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle#Modulo_bias
36183618
[safe integers]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isSafeInteger
36193619
[scrypt]: https://en.wikipedia.org/wiki/Scrypt
36203620
[stream]: stream.md

doc/api/debugger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,5 +201,5 @@ Chrome DevTools doesn't support debugging [worker threads][] yet.
201201

202202
[Chrome DevTools Protocol]: https://chromedevtools.github.io/devtools-protocol/
203203
[V8 Inspector]: #debugger_v8_inspector_integration_for_node_js
204-
[worker threads]: worker_threads.md
205204
[ndb]: https://github.com/GoogleChromeLabs/ndb/
205+
[worker threads]: worker_threads.md

doc/api/deprecations.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2623,6 +2623,10 @@ Type: Documentation-only
26232623
The [`crypto.Certificate()` constructor][] is deprecated. Use
26242624
[static methods of `crypto.Certificate()`][] instead.
26252625

2626+
[Legacy URL API]: url.md#url_legacy_url_api
2627+
[NIST SP 800-38D]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38d.pdf
2628+
[RFC 6066]: https://tools.ietf.org/html/rfc6066#section-3
2629+
[WHATWG URL API]: url.md#url_the_whatwg_url_api
26262630
[`--pending-deprecation`]: cli.md#cli_pending_deprecation
26272631
[`--throw-deprecation`]: cli.md#cli_throw_deprecation
26282632
[`Buffer.allocUnsafeSlow(size)`]: buffer.md#buffer_static_method_buffer_allocunsafeslow_size
@@ -2683,18 +2687,18 @@ The [`crypto.Certificate()` constructor][] is deprecated. Use
26832687
[`process.env`]: process.md#process_process_env
26842688
[`process.mainModule`]: process.md#process_process_mainmodule
26852689
[`punycode`]: punycode.md
2686-
[`require.extensions`]: modules.md#modules_require_extensions
2687-
[`require.main`]: modules.md#modules_accessing_the_main_module
26882690
[`request.abort()`]: http.md#http_request_abort
2689-
[`request.socket`]: http.md#http_request_socket
26902691
[`request.connection`]: http.md#http_request_connection
26912692
[`request.destroy()`]: http.md#http_request_destroy_error
2692-
[`response.socket`]: http.md#http_response_socket
2693+
[`request.socket`]: http.md#http_request_socket
2694+
[`require.extensions`]: modules.md#modules_require_extensions
2695+
[`require.main`]: modules.md#modules_accessing_the_main_module
26932696
[`response.connection`]: http.md#http_response_connection
26942697
[`response.end()`]: http.md#http_response_end_data_encoding_callback
26952698
[`response.finished`]: http.md#http_response_finished
2696-
[`response.writableFinished`]: http.md#http_response_writablefinished
2699+
[`response.socket`]: http.md#http_response_socket
26972700
[`response.writableEnded`]: http.md#http_response_writableended
2701+
[`response.writableFinished`]: http.md#http_response_writablefinished
26982702
[`script.createCachedData()`]: vm.md#vm_script_createcacheddata
26992703
[`setInterval()`]: timers.md#timers_setinterval_callback_delay_args
27002704
[`setTimeout()`]: timers.md#timers_settimeout_callback_delay_args
@@ -2737,10 +2741,6 @@ The [`crypto.Certificate()` constructor][] is deprecated. Use
27372741
[`worker.terminate()`]: worker_threads.md#worker_threads_worker_terminate
27382742
[`writable.writableLength`]: stream.md#stream_writable_writablelength
27392743
[`zlib.bytesWritten`]: zlib.md#zlib_zlib_byteswritten
2740-
[Legacy URL API]: url.md#url_legacy_url_api
2741-
[NIST SP 800-38D]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38d.pdf
2742-
[RFC 6066]: https://tools.ietf.org/html/rfc6066#section-3
2743-
[WHATWG URL API]: url.md#url_the_whatwg_url_api
27442744
[alloc]: buffer.md#buffer_static_method_buffer_alloc_size_fill_encoding
27452745
[alloc_unsafe_size]: buffer.md#buffer_static_method_buffer_allocunsafe_size
27462746
[from_arraybuffer]: buffer.md#buffer_static_method_buffer_from_arraybuffer_byteoffset_length

doc/api/dgram.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -785,6 +785,8 @@ interfaces" address on a random port (it does the right thing for both `udp4`
785785
and `udp6` sockets). The bound address and port can be retrieved using
786786
[`socket.address().address`][] and [`socket.address().port`][].
787787

788+
[IPv6 Zone Indices]: https://en.wikipedia.org/wiki/IPv6_address#Scoped_literal_IPv6_addresses
789+
[RFC 4007]: https://tools.ietf.org/html/rfc4007
788790
[`'close'`]: #dgram_event_close
789791
[`ERR_SOCKET_BAD_PORT`]: errors.md#errors_err_socket_bad_port
790792
[`ERR_SOCKET_BUFFER_SIZE`]: errors.md#errors_err_socket_buffer_size
@@ -800,6 +802,4 @@ and `udp6` sockets). The bound address and port can be retrieved using
800802
[`socket.address().address`]: #dgram_socket_address
801803
[`socket.address().port`]: #dgram_socket_address
802804
[`socket.bind()`]: #dgram_socket_bind_port_address_callback
803-
[IPv6 Zone Indices]: https://en.wikipedia.org/wiki/IPv6_address#Scoped_literal_IPv6_addresses
804-
[RFC 4007]: https://tools.ietf.org/html/rfc4007
805805
[byte length]: buffer.md#buffer_static_method_buffer_bytelength_string_encoding

doc/api/dns.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1158,6 +1158,11 @@ processing that happens on libuv's threadpool that [`dns.lookup()`][] can have.
11581158
They do not use the same set of configuration files than what [`dns.lookup()`][]
11591159
uses. For instance, _they do not use the configuration from `/etc/hosts`_.
11601160

1161+
[DNS error codes]: #dns_error_codes
1162+
[Domain Name System (DNS)]: https://en.wikipedia.org/wiki/Domain_Name_System
1163+
[Implementation considerations section]: #dns_implementation_considerations
1164+
[RFC 5952]: https://tools.ietf.org/html/rfc5952#section-6
1165+
[RFC 8482]: https://tools.ietf.org/html/rfc8482
11611166
[`Error`]: errors.md#errors_class_error
11621167
[`UV_THREADPOOL_SIZE`]: cli.md#cli_uv_threadpool_size_size
11631168
[`dgram.createSocket()`]: dgram.md#dgram_dgram_createsocket_options_callback
@@ -1195,9 +1200,4 @@ uses. For instance, _they do not use the configuration from `/etc/hosts`_.
11951200
[`dnsPromises.setServers()`]: #dns_dnspromises_setservers_servers
11961201
[`socket.connect()`]: net.md#net_socket_connect_options_connectlistener
11971202
[`util.promisify()`]: util.md#util_util_promisify_original
1198-
[DNS error codes]: #dns_error_codes
1199-
[Domain Name System (DNS)]: https://en.wikipedia.org/wiki/Domain_Name_System
1200-
[Implementation considerations section]: #dns_implementation_considerations
1201-
[RFC 5952]: https://tools.ietf.org/html/rfc5952#section-6
1202-
[RFC 8482]: https://tools.ietf.org/html/rfc8482
12031203
[supported `getaddrinfo` flags]: #dns_supported_getaddrinfo_flags

doc/api/documentation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Most Unix system calls have Windows analogues. Still, behavior differences may
6060
be unavoidable.
6161

6262
[Semantic Versioning]: https://semver.org/
63+
[V8 JavaScript engine]: https://v8.dev/
6364
[the contributing guide]: https://github.com/nodejs/node/blob/master/CONTRIBUTING.md
6465
[the issue tracker]: https://github.com/nodejs/node/issues/new
65-
[V8 JavaScript engine]: https://v8.dev/
6666
[warning]: process.md#process_event_warning

doc/api/embedding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,8 @@ int RunNodeInstance(MultiIsolatePlatform* platform,
220220
}
221221
```
222222

223-
[`process.memoryUsage()`]: process.md#process_process_memoryusage
224223
[CLI options]: cli.md
224+
[`process.memoryUsage()`]: process.md#process_process_memoryusage
225225
[deprecation policy]: deprecations.md
226226
[embedtest.cc]: https://github.com/nodejs/node/blob/master/test/embedding/embedtest.cc
227227
[src/node.h]: https://github.com/nodejs/node/blob/master/src/node.h

0 commit comments

Comments
 (0)