Skip to content

Commit a669a19

Browse files
aduh95targos
authored andcommitted
doc: use ASCII order for md refs
PR-URL: #39170 Refs: nodejs/remark-preset-lint-node#188 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Darshan Sen <[email protected]>
1 parent 4715105 commit a669a19

17 files changed

+39
-39
lines changed

Diff for: doc/api/assert.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2421,6 +2421,7 @@ argument.
24212421
[SameValue Comparison]: https://tc39.github.io/ecma262/#sec-samevalue
24222422
[Strict Equality Comparison]: https://tc39.github.io/ecma262/#sec-strict-equality-comparison
24232423
[`AssertionError`]: #assert_class_assert_assertionerror
2424+
[`CallTracker`]: #assert_class_assert_calltracker
24242425
[`Class`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes
24252426
[`ERR_INVALID_RETURN_VALUE`]: errors.md#errors_err_invalid_return_value
24262427
[`Error.captureStackTrace`]: errors.md#errors_error_capturestacktrace_targetobject_constructoropt
@@ -2433,7 +2434,6 @@ argument.
24332434
[`TypeError`]: errors.md#errors_class_typeerror
24342435
[`WeakMap`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap
24352436
[`WeakSet`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet
2436-
[`CallTracker`]: #assert_class_assert_calltracker
24372437
[`assert.deepEqual()`]: #assert_assert_deepequal_actual_expected_message
24382438
[`assert.deepStrictEqual()`]: #assert_assert_deepstrictequal_actual_expected_message
24392439
[`assert.doesNotThrow()`]: #assert_assert_doesnotthrow_fn_error_message
@@ -2448,6 +2448,6 @@ argument.
24482448
[`process.on('exit')`]: process.md#process_event_exit
24492449
[`tracker.calls()`]: #assert_tracker_calls_fn_exact
24502450
[`tracker.verify()`]: #assert_tracker_verify
2451-
[strict assertion mode]: #assert_strict_assertion_mode
24522451
[enumerable "own" properties]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Enumerability_and_ownership_of_properties
24532452
[prototype-spec]: https://tc39.github.io/ecma262/#sec-ordinary-object-internal-methods-and-internal-slots
2453+
[strict assertion mode]: #assert_strict_assertion_mode

Diff for: doc/api/async_hooks.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -845,10 +845,10 @@ The documentation for this class has moved [`AsyncLocalStorage`][].
845845
[PromiseHooks]: https://docs.google.com/document/d/1rda3yKGHimKIhg5YeoAmCOtyURgsbTH_qaYR79FELlk/edit
846846
[`AsyncLocalStorage`]: async_context.md#async_context_class_asynclocalstorage
847847
[`AsyncResource`]: async_context.md#async_context_class_asyncresource
848+
[`Worker`]: worker_threads.md#worker_threads_class_worker
848849
[`after` callback]: #async_hooks_after_asyncid
849850
[`before` callback]: #async_hooks_before_asyncid
850851
[`destroy` callback]: #async_hooks_destroy_asyncid
851852
[`init` callback]: #async_hooks_init_asyncid_type_triggerasyncid_resource
852853
[`promiseResolve` callback]: #async_hooks_promiseresolve_asyncid
853-
[`Worker`]: worker_threads.md#worker_threads_class_worker
854854
[promise execution tracking]: #async_hooks_promise_execution_tracking

Diff for: doc/api/cluster.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1082,9 +1082,9 @@ socket.on('data', (id) => {
10821082
[`child_process.fork()`]: child_process.md#child_process_child_process_fork_modulepath_args_options
10831083
[`child_process` event: `'exit'`]: child_process.md#child_process_event_exit
10841084
[`child_process` event: `'message'`]: child_process.md#child_process_event_message
1085+
[`cluster.isPrimary`]: #cluster_cluster_isprimary
10851086
[`cluster.settings`]: #cluster_cluster_settings
10861087
[`disconnect()`]: child_process.md#child_process_subprocess_disconnect
1087-
[`cluster.isPrimary`]: #cluster_cluster_isprimary
10881088
[`kill()`]: process.md#process_process_kill_pid_signal
10891089
[`process` event: `'message'`]: process.md#process_event_message
10901090
[`server.close()`]: net.md#net_event_close

Diff for: doc/api/crypto.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5640,7 +5640,6 @@ See the [list of SSL OP Flags][] for details.
56405640
[AEAD algorithms]: https://en.wikipedia.org/wiki/Authenticated_encryption
56415641
[CCM mode]: #crypto_ccm_mode
56425642
[Caveats]: #crypto_support_for_weak_or_compromised_algorithms
5643-
[caveats when using strings as inputs to cryptographic APIs]: #crypto_using_strings_as_inputs_to_cryptographic_apis
56445643
[Crypto constants]: #crypto_crypto_constants_1
56455644
[HTML 5.2]: https://www.w3.org/TR/html52/changes.html#features-removed
56465645
[HTML5's `keygen` element]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/keygen
@@ -5710,6 +5709,7 @@ See the [list of SSL OP Flags][] for details.
57105709
[`util.promisify()`]: util.md#util_util_promisify_original
57115710
[`verify.update()`]: #crypto_verify_update_data_inputencoding
57125711
[`verify.verify()`]: #crypto_verify_verify_object_signature_signatureencoding
5712+
[caveats when using strings as inputs to cryptographic APIs]: #crypto_using_strings_as_inputs_to_cryptographic_apis
57135713
[certificate object]: tls.md#tls_certificate_object
57145714
[encoding]: buffer.md#buffer_buffers_and_character_encodings
57155715
[initialization vector]: https://en.wikipedia.org/wiki/Initialization_vector

Diff for: doc/api/diagnostics_channel.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,6 @@ channel.subscribe(onMessage);
257257
channel.unsubscribe(onMessage);
258258
```
259259

260-
[`diagnostics_channel.channel(name)`]: #diagnostics_channel_diagnostics_channel_channel_name
261-
[`channel.subscribe(onMessage)`]: #diagnostics_channel_channel_subscribe_onmessage
262260
[`'uncaughtException'`]: process.md#process_event_uncaughtexception
261+
[`channel.subscribe(onMessage)`]: #diagnostics_channel_channel_subscribe_onmessage
262+
[`diagnostics_channel.channel(name)`]: #diagnostics_channel_diagnostics_channel_channel_name

Diff for: doc/api/esm.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1338,15 +1338,15 @@ success!
13381338
[`data:` URLs]: https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs
13391339
[`export`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/export
13401340
[`import()`]: #esm_import_expressions
1341-
[`import.meta.url`]: #esm_import_meta_url
13421341
[`import.meta.resolve`]: #esm_import_meta_resolve_specifier_parent
1342+
[`import.meta.url`]: #esm_import_meta_url
13431343
[`import`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import
13441344
[`module.createRequire()`]: module.md#module_module_createrequire_filename
13451345
[`module.syncBuiltinESMExports()`]: module.md#module_module_syncbuiltinesmexports
13461346
[`package.json`]: packages.md#packages_node_js_package_json_field_definitions
13471347
[`process.dlopen`]: process.md#process_process_dlopen_module_filename_flags
1348-
[`transformSource` hook]: #esm_transformsource_source_context_defaulttransformsource
13491348
[`string`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String
1349+
[`transformSource` hook]: #esm_transformsource_source_context_defaulttransformsource
13501350
[`util.TextDecoder`]: util.md#util_class_util_textdecoder
13511351
[cjs-module-lexer]: https://github.com/guybedford/cjs-module-lexer/tree/1.2.1
13521352
[custom https loader]: #esm_https_loader

Diff for: doc/api/events.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1636,8 +1636,8 @@ to the `EventTarget`.
16361636
[`fs.ReadStream`]: fs.md#fs_class_fs_readstream
16371637
[`net.Server`]: net.md#net_class_net_server
16381638
[`process.on('warning')`]: process.md#process_event_warning
1639-
[stream]: stream.md
16401639
[capturerejections]: #events_capture_rejections_of_promises
1640+
[error]: #events_error_events
16411641
[rejection]: #events_emitter_symbol_for_nodejs_rejection_err_eventname_args
16421642
[rejectionsymbol]: #events_events_capturerejectionsymbol
1643-
[error]: #events_error_events
1643+
[stream]: stream.md

Diff for: doc/api/fs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6706,7 +6706,6 @@ the file contents.
67066706
[Naming Files, Paths, and Namespaces]: https://docs.microsoft.com/en-us/windows/desktop/FileIO/naming-a-file
67076707
[Readable Stream]: stream.md#stream_class_stream_readable
67086708
[Writable Stream]: stream.md#stream_class_stream_writable
6709-
[caveats]: #fs_caveats
67106709
[`AHAFS`]: https://developer.ibm.com/articles/au-aix_event_infrastructure/
67116710
[`Buffer.byteLength`]: buffer.md#buffer_static_method_buffer_bytelength_string_encoding
67126711
[`FSEvents`]: https://developer.apple.com/documentation/coreservices/file_system_events
@@ -6759,6 +6758,7 @@ the file contents.
67596758
[`kqueue(2)`]: https://www.freebsd.org/cgi/man.cgi?query=kqueue&sektion=2
67606759
[`util.promisify()`]: util.md#util_util_promisify_original
67616760
[bigints]: https://tc39.github.io/proposal-bigint
6761+
[caveats]: #fs_caveats
67626762
[chcp]: https://ss64.com/nt/chcp.html
67636763
[inode]: https://en.wikipedia.org/wiki/Inode
67646764
[support of file system `flags`]: #fs_file_system_flags

Diff for: doc/api/http.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -3140,13 +3140,13 @@ try {
31403140
}
31413141
```
31423142

3143-
[`--insecure-http-parser`]: cli.md#cli_insecure_http_parser
3144-
[`--max-http-header-size`]: cli.md#cli_max_http_header_size_size
31453143
[`'checkContinue'`]: #http_event_checkcontinue
31463144
[`'finish'`]: #http_event_finish
31473145
[`'request'`]: #http_event_request
31483146
[`'response'`]: #http_event_response
31493147
[`'upgrade'`]: #http_event_upgrade
3148+
[`--insecure-http-parser`]: cli.md#cli_insecure_http_parser
3149+
[`--max-http-header-size`]: cli.md#cli_max_http_header_size_size
31503150
[`Agent`]: #http_class_http_agent
31513151
[`Buffer.byteLength()`]: buffer.md#buffer_static_method_buffer_bytelength_string_encoding
31523152
[`Duplex`]: stream.md#stream_class_stream_duplex
@@ -3162,37 +3162,37 @@ try {
31623162
[`http.Agent`]: #http_class_http_agent
31633163
[`http.ClientRequest`]: #http_class_http_clientrequest
31643164
[`http.IncomingMessage`]: #http_class_http_incomingmessage
3165-
[`http.Server`]: #http_class_http_server
31663165
[`http.ServerResponse`]: #http_class_http_serverresponse
3166+
[`http.Server`]: #http_class_http_server
31673167
[`http.get()`]: #http_http_get_options_callback
31683168
[`http.globalAgent`]: #http_http_globalagent
31693169
[`http.request()`]: #http_http_request_options_callback
31703170
[`message.headers`]: #http_message_headers
3171+
[`message.socket`]: #http_message_socket
31713172
[`net.Server.close()`]: net.md#net_server_close_callback
31723173
[`net.Server`]: net.md#net_class_net_server
31733174
[`net.Socket`]: net.md#net_class_net_socket
31743175
[`net.createConnection()`]: net.md#net_net_createconnection_options_connectlistener
31753176
[`new URL()`]: url.md#url_new_url_input_base
3176-
[`message.socket`]: #http_message_socket
31773177
[`outgoingMessage.socket`]: #http_outgoingMessage.socket
31783178
[`removeHeader(name)`]: #http_request_removeheader_name
3179-
[`request.end()`]: #http_request_end_data_encoding_callback
31803179
[`request.destroy()`]: #http_request_destroy_error
3180+
[`request.end()`]: #http_request_end_data_encoding_callback
31813181
[`request.flushHeaders()`]: #http_request_flushheaders
31823182
[`request.getHeader()`]: #http_request_getheader_name
31833183
[`request.setHeader()`]: #http_request_setheader_name_value
31843184
[`request.setTimeout()`]: #http_request_settimeout_timeout_callback
31853185
[`request.socket.getPeerCertificate()`]: tls.md#tls_tlssocket_getpeercertificate_detailed
31863186
[`request.socket`]: #http_request_socket
3187-
[`request.writableFinished`]: #http_request_writablefinished
31883187
[`request.writableEnded`]: #http_request_writableended
3188+
[`request.writableFinished`]: #http_request_writablefinished
31893189
[`request.write(data, encoding)`]: #http_request_write_chunk_encoding_callback
31903190
[`response.end()`]: #http_response_end_data_encoding_callback
31913191
[`response.getHeader()`]: #http_response_getheader_name
31923192
[`response.setHeader()`]: #http_response_setheader_name_value
31933193
[`response.socket`]: #http_response_socket
3194-
[`response.writableFinished`]: #http_response_writablefinished
31953194
[`response.writableEnded`]: #http_response_writableended
3195+
[`response.writableFinished`]: #http_response_writablefinished
31963196
[`response.write()`]: #http_response_write_chunk_encoding_callback
31973197
[`response.write(data, encoding)`]: #http_response_write_chunk_encoding_callback
31983198
[`response.writeContinue()`]: #http_response_writecontinue

Diff for: doc/api/http2.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3852,6 +3852,7 @@ you need to implement any fall-back behavior yourself.
38523852
[RFC 7838]: https://tools.ietf.org/html/rfc7838
38533853
[RFC 8336]: https://tools.ietf.org/html/rfc8336
38543854
[RFC 8441]: https://tools.ietf.org/html/rfc8441
3855+
[Sensitive headers]: #http2_sensitive_headers
38553856
[`'checkContinue'`]: #http2_event_checkcontinue
38563857
[`'connect'`]: #http2_event_connect
38573858
[`'request'`]: #http2_event_request
@@ -3881,8 +3882,8 @@ you need to implement any fall-back behavior yourself.
38813882
[`net.connect()`]: net.md#net_net_connect
38823883
[`net.createServer()`]: net.md#net_net_createserver_options_connectionlistener
38833884
[`request.authority`]: #http2_request_authority
3884-
[`request.socket`]: #http2_request_socket
38853885
[`request.socket.getPeerCertificate()`]: tls.md#tls_tlssocket_getpeercertificate_detailed
3886+
[`request.socket`]: #http2_request_socket
38863887
[`response.end()`]: #http2_response_end_data_encoding_callback
38873888
[`response.setHeader()`]: #http2_response_setheader_name_value
38883889
[`response.socket`]: #http2_response_socket
@@ -3897,4 +3898,3 @@ you need to implement any fall-back behavior yourself.
38973898
[`tls.createServer()`]: tls.md#tls_tls_createserver_options_secureconnectionlistener
38983899
[`writable.writableFinished`]: stream.md#stream_writable_writablefinished
38993900
[error code]: #http2_error_codes_for_rst_stream_and_goaway
3900-
[Sensitive headers]: #http2_sensitive_headers

Diff for: doc/api/modules.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1009,9 +1009,9 @@ This section was moved to
10091009
[`Error`]: errors.md#errors_class_error
10101010
[`__dirname`]: #modules_dirname
10111011
[`__filename`]: #modules_filename
1012-
[`module` object]: #modules_the_module_object
1013-
[`module.id`]: #modules_module_id
10141012
[`module.children`]: #modules_module_children
1013+
[`module.id`]: #modules_module_id
1014+
[`module` object]: #modules_the_module_object
10151015
[`package.json`]: packages.md#packages_node_js_package_json_field_definitions
10161016
[`path.dirname()`]: path.md#path_path_dirname_path
10171017
[`require.main`]: #modules_require_main

Diff for: doc/api/packages.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1171,23 +1171,23 @@ Import maps permit mapping to external packages.
11711171
This field defines [subpath imports][] for the current package.
11721172

11731173
[Babel]: https://babeljs.io/
1174-
[Conditional exports]: #packages_conditional_exports
11751174
[CommonJS]: modules.md
1175+
[Conditional exports]: #packages_conditional_exports
11761176
[ES module]: esm.md
11771177
[ES modules]: esm.md
11781178
[Node.js documentation for this section]: https://github.com/nodejs/node/blob/HEAD/doc/api/packages.md#conditions-definitions
1179-
[`ERR_PACKAGE_PATH_NOT_EXPORTED`]: errors.md#errors_err_package_path_not_exported
1180-
[`esm`]: https://github.com/standard-things/esm#readme
11811179
[`"exports"`]: #packages_exports
1180+
[`"imports"`]: #packages_imports
11821181
[`"main"`]: #packages_main
11831182
[`"name"`]: #packages_name
1184-
[`"imports"`]: #packages_imports
11851183
[`"type"`]: #packages_type
1184+
[`ERR_PACKAGE_PATH_NOT_EXPORTED`]: errors.md#errors_err_package_path_not_exported
1185+
[`esm`]: https://github.com/standard-things/esm#readme
11861186
[`package.json`]: #packages_node_js_package_json_field_definitions
11871187
[entry points]: #packages_package_entry_points
11881188
[self-reference]: #packages_self_referencing_a_package_using_its_name
11891189
[subpath exports]: #packages_subpath_exports
11901190
[subpath imports]: #packages_subpath_imports
11911191
[subpath patterns]: #packages_subpath_patterns
1192-
[the full specifier path]: esm.md#esm_mandatory_file_extensions
11931192
[the dual CommonJS/ES module packages section]: #packages_dual_commonjs_es_module_packages
1193+
[the full specifier path]: esm.md#esm_mandatory_file_extensions

Diff for: doc/api/stream.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3293,6 +3293,7 @@ contain multi-byte characters.
32933293
[HTTP requests, on the client]: http.md#http_class_http_clientrequest
32943294
[HTTP responses, on the server]: http.md#http_class_http_serverresponse
32953295
[TCP sockets]: net.md#net_class_net_socket
3296+
[Three states]: #stream_three_states
32963297
[`'data'`]: #stream_event_data
32973298
[`'drain'`]: #stream_event_drain
32983299
[`'end'`]: #stream_event_end
@@ -3314,11 +3315,11 @@ contain multi-byte characters.
33143315
[`readable.push('')`]: #stream_readable_push
33153316
[`readable.setEncoding()`]: #stream_readable_setencoding_encoding
33163317
[`stream.Readable.from()`]: #stream_stream_readable_from_iterable_options
3318+
[`stream.addAbortSignal()`]: #stream_stream_addabortsignal_signal_stream
33173319
[`stream.cork()`]: #stream_writable_cork
33183320
[`stream.finished()`]: #stream_stream_finished_stream_options_callback
33193321
[`stream.pipe()`]: #stream_readable_pipe_destination_options
33203322
[`stream.pipeline()`]: #stream_stream_pipeline_source_transforms_destination_callback
3321-
[`stream.addAbortSignal()`]: #stream_stream_addabortsignal_signal_stream
33223323
[`stream.uncork()`]: #stream_writable_uncork
33233324
[`stream.unpipe()`]: #stream_readable_unpipe_destination
33243325
[`stream.wrap()`]: #stream_readable_wrap_stream
@@ -3354,7 +3355,6 @@ contain multi-byte characters.
33543355
[stream-resume]: #stream_readable_resume
33553356
[stream-uncork]: #stream_writable_uncork
33563357
[stream-write]: #stream_writable_write_chunk_encoding_callback
3357-
[Three states]: #stream_three_states
33583358
[writable-_construct]: #stream_writable_construct_callback
33593359
[writable-_destroy]: #stream_writable_destroy_err_callback
33603360
[writable-destroy]: #stream_writable_destroy_error

Diff for: doc/api/tls.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2073,14 +2073,14 @@ added: v11.4.0
20732073
[Session Resumption]: #tls_session_resumption
20742074
[Stream]: stream.md#stream_stream
20752075
[TLS recommendations]: https://wiki.mozilla.org/Security/Server_Side_TLS
2076-
[`--tls-cipher-list`]: cli.md#cli_tls_cipher_list_list
2077-
[`Duplex`]: stream.md#stream_class_stream_duplex
2078-
[`NODE_OPTIONS`]: cli.md#cli_node_options_options
20792076
[`'newSession'`]: #tls_event_newsession
20802077
[`'resumeSession'`]: #tls_event_resumesession
20812078
[`'secureConnect'`]: #tls_event_secureconnect
20822079
[`'secureConnection'`]: #tls_event_secureconnection
20832080
[`'session'`]: #tls_event_session
2081+
[`--tls-cipher-list`]: cli.md#cli_tls_cipher_list_list
2082+
[`Duplex`]: stream.md#stream_class_stream_duplex
2083+
[`NODE_OPTIONS`]: cli.md#cli_node_options_options
20842084
[`SSL_export_keying_material`]: https://www.openssl.org/docs/man1.1.1/man3/SSL_export_keying_material.html
20852085
[`SSL_get_version`]: https://www.openssl.org/docs/man1.1.1/man3/SSL_get_version.html
20862086
[`crypto.getCurves()`]: crypto.md#crypto_crypto_getcurves
@@ -2113,5 +2113,5 @@ added: v11.4.0
21132113
[cipher list format]: https://www.openssl.org/docs/man1.1.1/man1/ciphers.html#CIPHER-LIST-FORMAT
21142114
[forward secrecy]: https://en.wikipedia.org/wiki/Perfect_forward_secrecy
21152115
[modifying the default cipher suite]: #tls_modifying_the_default_tls_cipher_suite
2116-
[specific attacks affecting larger AES key sizes]: https://www.schneier.com/blog/archives/2009/07/another_new_aes.html
21172116
[perfect forward secrecy]: #tls_perfect_forward_secrecy
2117+
[specific attacks affecting larger AES key sizes]: https://www.schneier.com/blog/archives/2009/07/another_new_aes.html

Diff for: doc/api/url.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1593,8 +1593,8 @@ console.log(myURL.origin);
15931593
15941594
[ICU]: intl.md#intl_options_for_building_node_js
15951595
[Punycode]: https://tools.ietf.org/html/rfc5891#section-4.4
1596-
[WHATWG URL Standard]: https://url.spec.whatwg.org/
15971596
[WHATWG URL]: #url_the_whatwg_url_api
1597+
[WHATWG URL Standard]: https://url.spec.whatwg.org/
15981598
[`Error`]: errors.md#errors_class_error
15991599
[`JSON.stringify()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify
16001600
[`Map`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map

Diff for: doc/api/worker_threads.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1259,6 +1259,7 @@ thread spawned will spawn another until the application crashes.
12591259
[`SharedArrayBuffer`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer
12601260
[`Uint8Array`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array
12611261
[`WebAssembly.Module`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Module
1262+
[`Worker constructor options`]: #worker_threads_new_worker_filename_options
12621263
[`Worker`]: #worker_threads_class_worker
12631264
[`cluster` module]: cluster.md
12641265
[`data:` URL]: https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs
@@ -1281,17 +1282,16 @@ thread spawned will spawn another until the application crashes.
12811282
[`process.title`]: process.md#process_process_title
12821283
[`require('worker_threads').isMainThread`]: #worker_threads_worker_ismainthread
12831284
[`require('worker_threads').parentPort.on('message')`]: #worker_threads_event_message
1284-
[`require('worker_threads').parentPort`]: #worker_threads_worker_parentport
12851285
[`require('worker_threads').parentPort.postMessage()`]: #worker_threads_worker_postmessage_value_transferlist
1286+
[`require('worker_threads').parentPort`]: #worker_threads_worker_parentport
12861287
[`require('worker_threads').threadId`]: #worker_threads_worker_threadid
12871288
[`require('worker_threads').workerData`]: #worker_threads_worker_workerdata
12881289
[`trace_events`]: tracing.md
12891290
[`v8.getHeapSnapshot()`]: v8.md#v8_v8_getheapsnapshot
12901291
[`vm`]: vm.md
1291-
[`Worker constructor options`]: #worker_threads_new_worker_filename_options
1292+
[`worker.SHARE_ENV`]: #worker_threads_worker_share_env
12921293
[`worker.on('message')`]: #worker_threads_event_message_1
12931294
[`worker.postMessage()`]: #worker_threads_worker_postmessage_value_transferlist
1294-
[`worker.SHARE_ENV`]: #worker_threads_worker_share_env
12951295
[`worker.terminate()`]: #worker_threads_worker_terminate
12961296
[`worker.threadId`]: #worker_threads_worker_threadid_1
12971297
[async-resource-worker-pool]: async_hooks.md#async-resource-worker-pool

Diff for: src/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1036,7 +1036,7 @@ static void GetUserInfo(const FunctionCallbackInfo<Value>& args) {
10361036
[exception handling]: #exception-handling
10371037
[internal field]: #internal-fields
10381038
[introduction for V8 embedders]: https://v8.dev/docs/embed
1039+
[libuv]: https://libuv.org/
10391040
[libuv handles]: #libuv-handles-and-requests
10401041
[libuv requests]: #libuv-handles-and-requests
1041-
[libuv]: https://libuv.org/
10421042
[reference documentation for the libuv API]: http://docs.libuv.org/en/v1.x/

0 commit comments

Comments
 (0)