Skip to content

Commit 57f1e32

Browse files
aduh95Trott
authored andcommitted
doc: sort md references in ASCII order
Refs: nodejs#35244 PR-URL: nodejs#35191 Fixes: nodejs#35189 Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
1 parent ecf5060 commit 57f1e32

40 files changed

+227
-227
lines changed

doc/api/addons.md

+1-1
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

+5-5
Original file line numberDiff line numberDiff line change
@@ -1562,6 +1562,11 @@ assert.throws(throwingFirst, /Second$/);
15621562
Due to the confusing error-prone notation, avoid a string as the second
15631563
argument.
15641564

1565+
[Abstract Equality Comparison]: https://tc39.github.io/ecma262/#sec-abstract-equality-comparison
1566+
[Object wrappers]: https://developer.mozilla.org/en-US/docs/Glossary/Primitive#Primitive_wrapper_objects_in_JavaScript
1567+
[Object.prototype.toString()]: https://tc39.github.io/ecma262/#sec-object.prototype.tostring
1568+
[SameValue Comparison]: https://tc39.github.io/ecma262/#sec-samevalue
1569+
[Strict Equality Comparison]: https://tc39.github.io/ecma262/#sec-strict-equality-comparison
15651570
[`AssertionError`]: #assert_class_assert_assertionerror
15661571
[`Class`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes
15671572
[`ERR_INVALID_RETURN_VALUE`]: errors.md#errors_err_invalid_return_value
@@ -1591,10 +1596,5 @@ argument.
15911596
[`tracker.calls()`]: #assert_tracker_calls_fn_exact
15921597
[`tracker.verify()`]: #assert_tracker_verify
15931598
[strict assertion mode]: #assert_strict_assertion_mode
1594-
[Abstract Equality Comparison]: https://tc39.github.io/ecma262/#sec-abstract-equality-comparison
1595-
[Object wrappers]: https://developer.mozilla.org/en-US/docs/Glossary/Primitive#Primitive_wrapper_objects_in_JavaScript
1596-
[Object.prototype.toString()]: https://tc39.github.io/ecma262/#sec-object.prototype.tostring
1597-
[SameValue Comparison]: https://tc39.github.io/ecma262/#sec-samevalue
1598-
[Strict Equality Comparison]: https://tc39.github.io/ecma262/#sec-strict-equality-comparison
15991599
[enumerable "own" properties]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Enumerability_and_ownership_of_properties
16001600
[prototype-spec]: https://tc39.github.io/ecma262/#sec-ordinary-object-internal-methods-and-internal-slots

doc/api/async_hooks.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1183,16 +1183,16 @@ If you need to keep using callback-based API, or your code assumes
11831183
a custom thenable implementation, use the [`AsyncResource`][] class
11841184
to associate the asynchronous operation with the correct execution context.
11851185

1186+
[Hook Callbacks]: #async_hooks_hook_callbacks
1187+
[PromiseHooks]: https://docs.google.com/document/d/1rda3yKGHimKIhg5YeoAmCOtyURgsbTH_qaYR79FELlk/edit
11861188
[`AsyncResource`]: #async_hooks_class_asyncresource
11871189
[`after` callback]: #async_hooks_after_asyncid
11881190
[`before` callback]: #async_hooks_before_asyncid
11891191
[`destroy` callback]: #async_hooks_destroy_asyncid
11901192
[`init` callback]: #async_hooks_init_asyncid_type_triggerasyncid_resource
11911193
[`promiseResolve` callback]: #async_hooks_promiseresolve_asyncid
11921194
[`EventEmitter`]: events.md#events_class_eventemitter
1193-
[Hook Callbacks]: #async_hooks_hook_callbacks
1194-
[PromiseHooks]: https://docs.google.com/document/d/1rda3yKGHimKIhg5YeoAmCOtyURgsbTH_qaYR79FELlk/edit
11951195
[`Stream`]: stream.md#stream_stream
11961196
[`Worker`]: worker_threads.md#worker_threads_class_worker
1197-
[promise execution tracking]: #async_hooks_promise_execution_tracking
11981197
[`util.promisify()`]: util.md#util_util_promisify_original
1198+
[promise execution tracking]: #async_hooks_promise_execution_tracking

doc/api/buffer.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -3274,7 +3274,12 @@ While there are clear performance advantages to using
32743274
[`Buffer.allocUnsafe()`][], extra care *must* be taken in order to avoid
32753275
introducing security vulnerabilities into an application.
32763276

3277+
[ASCII]: https://en.wikipedia.org/wiki/ASCII
3278+
[Base64]: https://en.wikipedia.org/wiki/Base64
3279+
[ISO-8859-1]: https://en.wikipedia.org/wiki/ISO-8859-1
32773280
[RFC 4648, Section 5]: https://tools.ietf.org/html/rfc4648#section-5
3281+
[UTF-16]: https://en.wikipedia.org/wiki/UTF-16
3282+
[UTF-8]: https://en.wikipedia.org/wiki/UTF-8
32783283
[WHATWG Encoding Standard]: https://encoding.spec.whatwg.org/
32793284
[`ArrayBuffer`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer
32803285
[`Buffer.alloc()`]: #buffer_static_method_buffer_alloc_size_fill_encoding
@@ -3286,18 +3291,18 @@ introducing security vulnerabilities into an application.
32863291
[`Buffer.from(string)`]: #buffer_static_method_buffer_from_string_encoding
32873292
[`Buffer.poolSize`]: #buffer_class_property_buffer_poolsize
32883293
[`DataView`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView
3289-
[`ERR_INVALID_BUFFER_SIZE`]: errors.md#ERR_INVALID_BUFFER_SIZE
32903294
[`ERR_INVALID_ARG_VALUE`]: errors.md#ERR_INVALID_ARG_VALUE
3295+
[`ERR_INVALID_BUFFER_SIZE`]: errors.md#ERR_INVALID_BUFFER_SIZE
32913296
[`ERR_OUT_OF_RANGE`]: errors.md#ERR_OUT_OF_RANGE
32923297
[`JSON.stringify()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify
32933298
[`SharedArrayBuffer`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer
32943299
[`String#indexOf()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf
32953300
[`String#lastIndexOf()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/lastIndexOf
32963301
[`String.prototype.length`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/length
3297-
[`TypedArray.from()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/from
32983302
[`TypedArray#set()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/set
32993303
[`TypedArray#slice()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/slice
33003304
[`TypedArray#subarray()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/subarray
3305+
[`TypedArray.from()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/from
33013306
[`TypedArray`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
33023307
[`Uint8Array`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array
33033308
[`buf.buffer`]: #buffer_buf_buffer
@@ -3314,11 +3319,6 @@ introducing security vulnerabilities into an application.
33143319
[`buffer.constants.MAX_STRING_LENGTH`]: #buffer_buffer_constants_max_string_length
33153320
[`buffer.kMaxLength`]: #buffer_buffer_kmaxlength
33163321
[`util.inspect()`]: util.md#util_util_inspect_object_options
3317-
[ASCII]: https://en.wikipedia.org/wiki/ASCII
3318-
[Base64]: https://en.wikipedia.org/wiki/Base64
3319-
[ISO-8859-1]: https://en.wikipedia.org/wiki/ISO-8859-1
3320-
[UTF-8]: https://en.wikipedia.org/wiki/UTF-8
3321-
[UTF-16]: https://en.wikipedia.org/wiki/UTF-16
33223322
[binary strings]: https://developer.mozilla.org/en-US/docs/Web/API/DOMString/Binary
33233323
[endianness]: https://en.wikipedia.org/wiki/Endianness
33243324
[iterator]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols

doc/api/child_process.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1583,6 +1583,9 @@ Therefore, this feature requires opting in by setting the
15831583
or [`child_process.fork()`][].
15841584

15851585
[Advanced serialization]: #child_process_advanced_serialization
1586+
[Default Windows shell]: #child_process_default_windows_shell
1587+
[HTML structured clone algorithm]: https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm
1588+
[Shell requirements]: #child_process_shell_requirements
15861589
[`'disconnect'`]: process.md#process_event_disconnect
15871590
[`'error'`]: #child_process_event_error
15881591
[`'exit'`]: #child_process_event_exit
@@ -1615,8 +1618,5 @@ or [`child_process.fork()`][].
16151618
[`subprocess.stdio`]: #child_process_subprocess_stdio
16161619
[`subprocess.stdout`]: #child_process_subprocess_stdout
16171620
[`util.promisify()`]: util.md#util_util_promisify_original
1618-
[Default Windows shell]: #child_process_default_windows_shell
1619-
[HTML structured clone algorithm]: https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm
1620-
[Shell requirements]: #child_process_shell_requirements
16211621
[synchronous counterparts]: #child_process_synchronous_process_creation
16221622
[v8.serdes]: v8.md#v8_serialization_api

doc/api/cluster.md

+2-2
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

+18-18
Original file line numberDiff line numberDiff line change
@@ -3552,6 +3552,23 @@ See the [list of SSL OP Flags][] for details.
35523552
</tr>
35533553
</table>
35543554

3555+
[AEAD algorithms]: https://en.wikipedia.org/wiki/Authenticated_encryption
3556+
[CCM mode]: #crypto_ccm_mode
3557+
[Caveats]: #crypto_support_for_weak_or_compromised_algorithms
3558+
[Crypto constants]: #crypto_crypto_constants_1
3559+
[HTML 5.2]: https://www.w3.org/TR/html52/changes.html#features-removed
3560+
[HTML5's `keygen` element]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/keygen
3561+
[NIST SP 800-131A]: https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-131Ar1.pdf
3562+
[NIST SP 800-132]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf
3563+
[NIST SP 800-38D]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38d.pdf
3564+
[Nonce-Disrespecting Adversaries]: https://github.com/nonce-disrespect/nonce-disrespect
3565+
[OpenSSL's SPKAC implementation]: https://www.openssl.org/docs/man1.1.0/apps/openssl-spkac.html
3566+
[RFC 1421]: https://www.rfc-editor.org/rfc/rfc1421.txt
3567+
[RFC 2412]: https://www.rfc-editor.org/rfc/rfc2412.txt
3568+
[RFC 3526]: https://www.rfc-editor.org/rfc/rfc3526.txt
3569+
[RFC 3610]: https://www.rfc-editor.org/rfc/rfc3610.txt
3570+
[RFC 4055]: https://www.rfc-editor.org/rfc/rfc4055.txt
3571+
[RFC 5208]: https://www.rfc-editor.org/rfc/rfc5208.txt
35553572
[`Buffer`]: buffer.md
35563573
[`EVP_BytesToKey`]: https://www.openssl.org/docs/man1.1.0/crypto/EVP_BytesToKey.html
35573574
[`KeyObject`]: #crypto_class_keyobject
@@ -3602,27 +3619,10 @@ See the [list of SSL OP Flags][] for details.
36023619
[`util.promisify()`]: util.md#util_util_promisify_original
36033620
[`verify.update()`]: #crypto_verify_update_data_inputencoding
36043621
[`verify.verify()`]: #crypto_verify_verify_object_signature_signatureencoding
3605-
[AEAD algorithms]: https://en.wikipedia.org/wiki/Authenticated_encryption
3606-
[CCM mode]: #crypto_ccm_mode
3607-
[Caveats]: #crypto_support_for_weak_or_compromised_algorithms
3608-
[Crypto constants]: #crypto_crypto_constants_1
3609-
[HTML 5.2]: https://www.w3.org/TR/html52/changes.html#features-removed
3610-
[HTML5's `keygen` element]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/keygen
3611-
[NIST SP 800-131A]: https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-131Ar1.pdf
3612-
[NIST SP 800-132]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf
3613-
[NIST SP 800-38D]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38d.pdf
3614-
[modulo bias]: https://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle#Modulo_bias
3615-
[Nonce-Disrespecting Adversaries]: https://github.com/nonce-disrespect/nonce-disrespect
3616-
[OpenSSL's SPKAC implementation]: https://www.openssl.org/docs/man1.1.0/apps/openssl-spkac.html
3617-
[RFC 1421]: https://www.rfc-editor.org/rfc/rfc1421.txt
3618-
[RFC 2412]: https://www.rfc-editor.org/rfc/rfc2412.txt
3619-
[RFC 3526]: https://www.rfc-editor.org/rfc/rfc3526.txt
3620-
[RFC 3610]: https://www.rfc-editor.org/rfc/rfc3610.txt
3621-
[RFC 4055]: https://www.rfc-editor.org/rfc/rfc4055.txt
3622-
[RFC 5208]: https://www.rfc-editor.org/rfc/rfc5208.txt
36233622
[encoding]: buffer.md#buffer_buffers_and_character_encodings
36243623
[initialization vector]: https://en.wikipedia.org/wiki/Initialization_vector
36253624
[list of SSL OP Flags]: https://wiki.openssl.org/index.php/List_of_SSL_OP_Flags#Table_of_Options
3625+
[modulo bias]: https://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle#Modulo_bias
36263626
[safe integers]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isSafeInteger
36273627
[scrypt]: https://en.wikipedia.org/wiki/Scrypt
36283628
[stream]: stream.md

doc/api/debugger.md

+1-1
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

+9-9
Original file line numberDiff line numberDiff line change
@@ -2650,6 +2650,10 @@ Type: Documentation-only
26502650
The [`crypto.Certificate()` constructor][] is deprecated. Use
26512651
[static methods of `crypto.Certificate()`][] instead.
26522652

2653+
[Legacy URL API]: url.md#url_legacy_url_api
2654+
[NIST SP 800-38D]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38d.pdf
2655+
[RFC 6066]: https://tools.ietf.org/html/rfc6066#section-3
2656+
[WHATWG URL API]: url.md#url_the_whatwg_url_api
26532657
[`--pending-deprecation`]: cli.md#cli_pending_deprecation
26542658
[`--throw-deprecation`]: cli.md#cli_throw_deprecation
26552659
[`--unhandled-rejections`]: cli.md#cli_unhandled_rejections_mode
@@ -2710,18 +2714,18 @@ The [`crypto.Certificate()` constructor][] is deprecated. Use
27102714
[`process.env`]: process.md#process_process_env
27112715
[`process.mainModule`]: process.md#process_process_mainmodule
27122716
[`punycode`]: punycode.md
2713-
[`require.extensions`]: modules.md#modules_require_extensions
2714-
[`require.main`]: modules.md#modules_accessing_the_main_module
27152717
[`request.abort()`]: http.md#http_request_abort
2716-
[`request.socket`]: http.md#http_request_socket
27172718
[`request.connection`]: http.md#http_request_connection
27182719
[`request.destroy()`]: http.md#http_request_destroy_error
2719-
[`response.socket`]: http.md#http_response_socket
2720+
[`request.socket`]: http.md#http_request_socket
2721+
[`require.extensions`]: modules.md#modules_require_extensions
2722+
[`require.main`]: modules.md#modules_accessing_the_main_module
27202723
[`response.connection`]: http.md#http_response_connection
27212724
[`response.end()`]: http.md#http_response_end_data_encoding_callback
27222725
[`response.finished`]: http.md#http_response_finished
2723-
[`response.writableFinished`]: http.md#http_response_writablefinished
2726+
[`response.socket`]: http.md#http_response_socket
27242727
[`response.writableEnded`]: http.md#http_response_writableended
2728+
[`response.writableFinished`]: http.md#http_response_writablefinished
27252729
[`script.createCachedData()`]: vm.md#vm_script_createcacheddata
27262730
[`setInterval()`]: timers.md#timers_setinterval_callback_delay_args
27272731
[`setTimeout()`]: timers.md#timers_settimeout_callback_delay_args
@@ -2764,10 +2768,6 @@ The [`crypto.Certificate()` constructor][] is deprecated. Use
27642768
[`worker.terminate()`]: worker_threads.md#worker_threads_worker_terminate
27652769
[`writable.writableLength`]: stream.md#stream_writable_writablelength
27662770
[`zlib.bytesWritten`]: zlib.md#zlib_zlib_byteswritten
2767-
[Legacy URL API]: url.md#url_legacy_url_api
2768-
[NIST SP 800-38D]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38d.pdf
2769-
[RFC 6066]: https://tools.ietf.org/html/rfc6066#section-3
2770-
[WHATWG URL API]: url.md#url_the_whatwg_url_api
27712771
[alloc]: buffer.md#buffer_static_method_buffer_alloc_size_fill_encoding
27722772
[alloc_unsafe_size]: buffer.md#buffer_static_method_buffer_allocunsafe_size
27732773
[from_arraybuffer]: buffer.md#buffer_static_method_buffer_from_arraybuffer_byteoffset_length

doc/api/dgram.md

+2-2
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

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

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

doc/api/documentation.md

+1-1
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

+1-1
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)