Skip to content

Commit ecf5060

Browse files
aduh95Trott
authored andcommitted
doc: use .md extension for internal links
This helps catch broken links as part of the test suite. This also improves the user experience when browsing the markdown files. 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 726143e commit ecf5060

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+741
-681
lines changed

doc/api/addons.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Addons provide an interface between JavaScript and C/C++ libraries.
1010
There are three options for implementing addons: N-API, nan, or direct
1111
use of internal V8, libuv and Node.js libraries. Unless there is a need for
1212
direct access to functionality which is not exposed by N-API, use N-API.
13-
Refer to [C/C++ addons with N-API](n-api.html) for more information on N-API.
13+
Refer to [C/C++ addons with N-API](n-api.md) for more information on N-API.
1414

1515
When not using N-API, implementing addons is complicated,
1616
involving knowledge of several components and APIs:
@@ -452,7 +452,7 @@ in the N-API are used.
452452

453453
Creating and maintaining an addon that benefits from the ABI stability
454454
provided by N-API carries with it certain
455-
[implementation considerations](n-api.html#n_api_implications_of_abi_stability).
455+
[implementation considerations](n-api.md#n_api_implications_of_abi_stability).
456456

457457
To use N-API in the above "Hello world" example, replace the content of
458458
`hello.cc` with the following. All other instructions remain the same.
@@ -490,7 +490,7 @@ NAPI_MODULE(NODE_GYP_MODULE_NAME, init)
490490
```
491491
492492
The functions available and how to use them are documented in
493-
[C/C++ addons with N-API](n-api.html).
493+
[C/C++ addons with N-API](n-api.md).
494494
495495
## Addon examples
496496
@@ -1356,7 +1356,7 @@ console.log(result);
13561356
// Prints: 30
13571357
```
13581358

1359-
[`Worker`]: worker_threads.html#worker_threads_class_worker
1359+
[`Worker`]: worker_threads.md#worker_threads_class_worker
13601360
[Electron]: https://electronjs.org/
13611361
[Embedder's Guide]: https://github.com/v8/v8/wiki/Embedder's%20Guide
13621362
[Linking to libraries included with Node.js]: #addons_linking_to_libraries_included_with_node_js
@@ -1367,5 +1367,5 @@ console.log(result);
13671367
[installation instructions]: https://github.com/nodejs/node-gyp#installation
13681368
[libuv]: https://github.com/libuv/libuv
13691369
[node-gyp]: https://github.com/nodejs/node-gyp
1370-
[require]: modules.html#modules_require_id
1370+
[require]: modules.md#modules_require_id
13711371
[v8-docs]: https://v8docs.nodesource.com/

doc/api/assert.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ assert.deepEqual([[[1, 2, 3]], 4, 5], [[[1, 2, '3']], 4, 5]);
7070
To deactivate the colors, use the `NO_COLOR` or `NODE_DISABLE_COLORS`
7171
environment variables. This will also deactivate the colors in the REPL. For
7272
more on color support in terminal environments, read the tty
73-
[getColorDepth()](tty.html#tty_writestream_getcolordepth_env) documentation.
73+
[getColorDepth()](tty.md#tty_writestream_getcolordepth_env) documentation.
7474

7575
## Legacy assertion mode
7676

@@ -1564,15 +1564,15 @@ argument.
15641564

15651565
[`AssertionError`]: #assert_class_assert_assertionerror
15661566
[`Class`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes
1567-
[`ERR_INVALID_RETURN_VALUE`]: errors.html#errors_err_invalid_return_value
1568-
[`Error.captureStackTrace`]: errors.html#errors_error_capturestacktrace_targetobject_constructoropt
1569-
[`Error`]: errors.html#errors_class_error
1567+
[`ERR_INVALID_RETURN_VALUE`]: errors.md#errors_err_invalid_return_value
1568+
[`Error.captureStackTrace`]: errors.md#errors_error_capturestacktrace_targetobject_constructoropt
1569+
[`Error`]: errors.md#errors_class_error
15701570
[`Map`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map
15711571
[`Object.is()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is
15721572
[`RegExp`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions
15731573
[`Set`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set
15741574
[`Symbol`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol
1575-
[`TypeError`]: errors.html#errors_class_typeerror
1575+
[`TypeError`]: errors.md#errors_class_typeerror
15761576
[`WeakMap`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap
15771577
[`WeakSet`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet
15781578
[`CallTracker`]: #assert_class_assert_calltracker
@@ -1587,7 +1587,7 @@ argument.
15871587
[`assert.ok()`]: #assert_assert_ok_value_message
15881588
[`assert.strictEqual()`]: #assert_assert_strictequal_actual_expected_message
15891589
[`assert.throws()`]: #assert_assert_throws_fn_error_message
1590-
[`process.on('exit')`]: process.html#process_event_exit
1590+
[`process.on('exit')`]: process.md#process_event_exit
15911591
[`tracker.calls()`]: #assert_tracker_calls_fn_exact
15921592
[`tracker.verify()`]: #assert_tracker_verify
15931593
[strict assertion mode]: #assert_strict_assertion_mode

doc/api/async_hooks.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1189,10 +1189,10 @@ to associate the asynchronous operation with the correct execution context.
11891189
[`destroy` callback]: #async_hooks_destroy_asyncid
11901190
[`init` callback]: #async_hooks_init_asyncid_type_triggerasyncid_resource
11911191
[`promiseResolve` callback]: #async_hooks_promiseresolve_asyncid
1192-
[`EventEmitter`]: events.html#events_class_eventemitter
1192+
[`EventEmitter`]: events.md#events_class_eventemitter
11931193
[Hook Callbacks]: #async_hooks_hook_callbacks
11941194
[PromiseHooks]: https://docs.google.com/document/d/1rda3yKGHimKIhg5YeoAmCOtyURgsbTH_qaYR79FELlk/edit
1195-
[`Stream`]: stream.html#stream_stream
1196-
[`Worker`]: worker_threads.html#worker_threads_class_worker
1195+
[`Stream`]: stream.md#stream_stream
1196+
[`Worker`]: worker_threads.md#worker_threads_class_worker
11971197
[promise execution tracking]: #async_hooks_promise_execution_tracking
1198-
[`util.promisify()`]: util.html#util_util_promisify_original
1198+
[`util.promisify()`]: util.md#util_util_promisify_original

doc/api/buffer.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3286,9 +3286,9 @@ introducing security vulnerabilities into an application.
32863286
[`Buffer.from(string)`]: #buffer_static_method_buffer_from_string_encoding
32873287
[`Buffer.poolSize`]: #buffer_class_property_buffer_poolsize
32883288
[`DataView`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView
3289-
[`ERR_INVALID_BUFFER_SIZE`]: errors.html#ERR_INVALID_BUFFER_SIZE
3290-
[`ERR_INVALID_ARG_VALUE`]: errors.html#ERR_INVALID_ARG_VALUE
3291-
[`ERR_OUT_OF_RANGE`]: errors.html#ERR_OUT_OF_RANGE
3289+
[`ERR_INVALID_BUFFER_SIZE`]: errors.md#ERR_INVALID_BUFFER_SIZE
3290+
[`ERR_INVALID_ARG_VALUE`]: errors.md#ERR_INVALID_ARG_VALUE
3291+
[`ERR_OUT_OF_RANGE`]: errors.md#ERR_OUT_OF_RANGE
32923292
[`JSON.stringify()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify
32933293
[`SharedArrayBuffer`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer
32943294
[`String#indexOf()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf
@@ -3313,7 +3313,7 @@ introducing security vulnerabilities into an application.
33133313
[`buffer.constants.MAX_LENGTH`]: #buffer_buffer_constants_max_length
33143314
[`buffer.constants.MAX_STRING_LENGTH`]: #buffer_buffer_constants_max_string_length
33153315
[`buffer.kMaxLength`]: #buffer_buffer_kmaxlength
3316-
[`util.inspect()`]: util.html#util_util_inspect_object_options
3316+
[`util.inspect()`]: util.md#util_util_inspect_object_options
33173317
[ASCII]: https://en.wikipedia.org/wiki/ASCII
33183318
[Base64]: https://en.wikipedia.org/wiki/Base64
33193319
[ISO-8859-1]: https://en.wikipedia.org/wiki/ISO-8859-1

doc/api/child_process.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1583,13 +1583,13 @@ Therefore, this feature requires opting in by setting the
15831583
or [`child_process.fork()`][].
15841584

15851585
[Advanced serialization]: #child_process_advanced_serialization
1586-
[`'disconnect'`]: process.html#process_event_disconnect
1586+
[`'disconnect'`]: process.md#process_event_disconnect
15871587
[`'error'`]: #child_process_event_error
15881588
[`'exit'`]: #child_process_event_exit
1589-
[`'message'`]: process.html#process_event_message
1589+
[`'message'`]: process.md#process_event_message
15901590
[`ChildProcess`]: #child_process_child_process
1591-
[`Error`]: errors.html#errors_class_error
1592-
[`EventEmitter`]: events.html#events_class_eventemitter
1591+
[`Error`]: errors.md#errors_class_error
1592+
[`EventEmitter`]: events.md#events_class_eventemitter
15931593
[`child_process.exec()`]: #child_process_child_process_exec_command_options_callback
15941594
[`child_process.execFile()`]: #child_process_child_process_execfile_file_args_options_callback
15951595
[`child_process.execFileSync()`]: #child_process_child_process_execfilesync_file_args_options
@@ -1598,13 +1598,13 @@ or [`child_process.fork()`][].
15981598
[`child_process.spawn()`]: #child_process_child_process_spawn_command_args_options
15991599
[`child_process.spawnSync()`]: #child_process_child_process_spawnsync_command_args_options
16001600
[`maxBuffer` and Unicode]: #child_process_maxbuffer_and_unicode
1601-
[`net.Server`]: net.html#net_class_net_server
1602-
[`net.Socket`]: net.html#net_class_net_socket
1601+
[`net.Server`]: net.md#net_class_net_server
1602+
[`net.Socket`]: net.md#net_class_net_socket
16031603
[`options.detached`]: #child_process_options_detached
1604-
[`process.disconnect()`]: process.html#process_process_disconnect
1605-
[`process.env`]: process.html#process_process_env
1606-
[`process.execPath`]: process.html#process_process_execpath
1607-
[`process.send()`]: process.html#process_process_send_message_sendhandle_options_callback
1604+
[`process.disconnect()`]: process.md#process_process_disconnect
1605+
[`process.env`]: process.md#process_process_env
1606+
[`process.execPath`]: process.md#process_process_execpath
1607+
[`process.send()`]: process.md#process_process_send_message_sendhandle_options_callback
16081608
[`stdio`]: #child_process_options_stdio
16091609
[`subprocess.connected`]: #child_process_subprocess_connected
16101610
[`subprocess.disconnect()`]: #child_process_subprocess_disconnect
@@ -1614,9 +1614,9 @@ or [`child_process.fork()`][].
16141614
[`subprocess.stdin`]: #child_process_subprocess_stdin
16151615
[`subprocess.stdio`]: #child_process_subprocess_stdio
16161616
[`subprocess.stdout`]: #child_process_subprocess_stdout
1617-
[`util.promisify()`]: util.html#util_util_promisify_original
1617+
[`util.promisify()`]: util.md#util_util_promisify_original
16181618
[Default Windows shell]: #child_process_default_windows_shell
16191619
[HTML structured clone algorithm]: https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm
16201620
[Shell requirements]: #child_process_shell_requirements
16211621
[synchronous counterparts]: #child_process_synchronous_process_creation
1622-
[v8.serdes]: v8.html#v8_serialization_api
1622+
[v8.serdes]: v8.md#v8_serialization_api

doc/api/cli.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1584,27 +1584,27 @@ $ node --max-old-space-size=1536 index.js
15841584
```
15851585

15861586
[Chrome DevTools Protocol]: https://chromedevtools.github.io/devtools-protocol/
1587-
[REPL]: repl.html
1587+
[REPL]: repl.md
15881588
[ScriptCoverage]: https://chromedevtools.github.io/devtools-protocol/tot/Profiler#type-ScriptCoverage
15891589
[Source Map]: https://sourcemaps.info/spec.html
15901590
[Subresource Integrity]: https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity
15911591
[V8 JavaScript code coverage]: https://v8project.blogspot.com/2017/12/javascript-code-coverage.html
15921592
[`--openssl-config`]: #cli_openssl_config_file
15931593
[`Atomics.wait()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/wait
1594-
[`Buffer`]: buffer.html#buffer_class_buffer
1594+
[`Buffer`]: buffer.md#buffer_class_buffer
15951595
[`NODE_OPTIONS`]: #cli_node_options_options
1596-
[`SlowBuffer`]: buffer.html#buffer_class_slowbuffer
1597-
[`process.setUncaughtExceptionCaptureCallback()`]: process.html#process_process_setuncaughtexceptioncapturecallback_fn
1598-
[`tls.DEFAULT_MAX_VERSION`]: tls.html#tls_tls_default_max_version
1599-
[`tls.DEFAULT_MIN_VERSION`]: tls.html#tls_tls_default_min_version
1600-
[`unhandledRejection`]: process.html#process_event_unhandledrejection
1601-
[`worker_threads.threadId`]: worker_threads.html#worker_threads_worker_threadid
1602-
[context-aware]: addons.html#addons_context_aware_addons
1603-
[customizing ESM specifier resolution]: esm.html#esm_customizing_esm_specifier_resolution_algorithm
1604-
[debugger]: debugger.html
1596+
[`SlowBuffer`]: buffer.md#buffer_class_slowbuffer
1597+
[`process.setUncaughtExceptionCaptureCallback()`]: process.md#process_process_setuncaughtexceptioncapturecallback_fn
1598+
[`tls.DEFAULT_MAX_VERSION`]: tls.md#tls_tls_default_max_version
1599+
[`tls.DEFAULT_MIN_VERSION`]: tls.md#tls_tls_default_min_version
1600+
[`unhandledRejection`]: process.md#process_event_unhandledrejection
1601+
[`worker_threads.threadId`]: worker_threads.md#worker_threads_worker_threadid
1602+
[context-aware]: addons.md#addons_context_aware_addons
1603+
[customizing ESM specifier resolution]: esm.md#esm_customizing_esm_specifier_resolution_algorithm
1604+
[debugger]: debugger.md
16051605
[debugging security implications]: https://nodejs.org/en/docs/guides/debugging-getting-started/#security-implications
1606-
[emit_warning]: process.html#process_process_emitwarning_warning_type_code_ctor
1607-
[experimental ECMAScript Module loader]: esm.html#esm_experimental_loaders
1606+
[emit_warning]: process.md#process_process_emitwarning_warning_type_code_ctor
1607+
[experimental ECMAScript Module loader]: esm.md#esm_experimental_loaders
16081608
[jitless]: https://v8.dev/blog/jitless
16091609
[libuv threadpool documentation]: https://docs.libuv.org/en/latest/threadpool.html
16101610
[remote code execution]: https://www.owasp.org/index.php/Code_Injection

doc/api/cluster.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -875,15 +875,15 @@ socket.on('data', (id) => {
875875

876876
[`.fork()`]: #cluster_cluster_fork_env
877877
[`.setupMaster()`]: #cluster_cluster_setupmaster_settings
878-
[`ChildProcess.send()`]: child_process.html#child_process_subprocess_send_message_sendhandle_options_callback
879-
[`child_process.fork()`]: child_process.html#child_process_child_process_fork_modulepath_args_options
880-
[`child_process` event: `'exit'`]: child_process.html#child_process_event_exit
881-
[`child_process` event: `'message'`]: child_process.html#child_process_event_message
878+
[`ChildProcess.send()`]: child_process.md#child_process_subprocess_send_message_sendhandle_options_callback
879+
[`child_process.fork()`]: child_process.md#child_process_child_process_fork_modulepath_args_options
880+
[`child_process` event: `'exit'`]: child_process.md#child_process_event_exit
881+
[`child_process` event: `'message'`]: child_process.md#child_process_event_message
882882
[`cluster.settings`]: #cluster_cluster_settings
883-
[`disconnect()`]: child_process.html#child_process_subprocess_disconnect
884-
[`kill()`]: process.html#process_process_kill_pid_signal
885-
[`process` event: `'message'`]: process.html#process_event_message
886-
[`server.close()`]: net.html#net_event_close
883+
[`disconnect()`]: child_process.md#child_process_subprocess_disconnect
884+
[`kill()`]: process.md#process_process_kill_pid_signal
885+
[`process` event: `'message'`]: process.md#process_event_message
886+
[`server.close()`]: net.md#net_event_close
887887
[`worker.exitedAfterDisconnect`]: #cluster_worker_exitedafterdisconnect
888-
[Advanced serialization for `child_process`]: child_process.html#child_process_advanced_serialization
889-
[Child Process module]: child_process.html#child_process_child_process_fork_modulepath_args_options
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/console.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -556,12 +556,12 @@ This method does not display anything unless used in the inspector. The
556556
[`console.profileEnd()`]: #console_console_profileend_label
557557
[`console.time()`]: #console_console_time_label
558558
[`console.timeEnd()`]: #console_console_timeend_label
559-
[`process.stderr`]: process.html#process_process_stderr
560-
[`process.stdout`]: process.html#process_process_stdout
561-
[`util.format()`]: util.html#util_util_format_format_args
562-
[`util.inspect()`]: util.html#util_util_inspect_object_options
563-
[customizing `util.inspect()` colors]: util.html#util_customizing_util_inspect_colors
559+
[`process.stderr`]: process.md#process_process_stderr
560+
[`process.stdout`]: process.md#process_process_stdout
561+
[`util.format()`]: util.md#util_util_format_format_args
562+
[`util.inspect()`]: util.md#util_util_inspect_object_options
563+
[customizing `util.inspect()` colors]: util.md#util_customizing_util_inspect_colors
564564
[falsy]: https://developer.mozilla.org/en-US/docs/Glossary/Falsy
565-
[inspector]: debugger.html
566-
[note on process I/O]: process.html#process_a_note_on_process_i_o
565+
[inspector]: debugger.md
566+
[note on process I/O]: process.md#process_a_note_on_process_i_o
567567
[truthy]: https://developer.mozilla.org/en-US/docs/Glossary/Truthy

doc/api/crypto.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3552,11 +3552,11 @@ See the [list of SSL OP Flags][] for details.
35523552
</tr>
35533553
</table>
35543554

3555-
[`Buffer`]: buffer.html
3555+
[`Buffer`]: buffer.md
35563556
[`EVP_BytesToKey`]: https://www.openssl.org/docs/man1.1.0/crypto/EVP_BytesToKey.html
35573557
[`KeyObject`]: #crypto_class_keyobject
35583558
[`Sign`]: #crypto_class_sign
3559-
[`UV_THREADPOOL_SIZE`]: cli.html#cli_uv_threadpool_size_size
3559+
[`UV_THREADPOOL_SIZE`]: cli.md#cli_uv_threadpool_size_size
35603560
[`Verify`]: #crypto_class_verify
35613561
[`cipher.final()`]: #crypto_cipher_final_outputencoding
35623562
[`cipher.update()`]: #crypto_cipher_update_data_inputencoding_outputencoding
@@ -3594,12 +3594,12 @@ See the [list of SSL OP Flags][] for details.
35943594
[`hmac.digest()`]: #crypto_hmac_digest_encoding
35953595
[`hmac.update()`]: #crypto_hmac_update_data_inputencoding
35963596
[`keyObject.export()`]: #crypto_keyobject_export_options
3597-
[`postMessage()`]: worker_threads.html#worker_threads_port_postmessage_value_transferlist
3597+
[`postMessage()`]: worker_threads.md#worker_threads_port_postmessage_value_transferlist
35983598
[`sign.sign()`]: #crypto_sign_sign_privatekey_outputencoding
35993599
[`sign.update()`]: #crypto_sign_update_data_inputencoding
3600-
[`stream.Writable` options]: stream.html#stream_new_stream_writable_options
3601-
[`stream.transform` options]: stream.html#stream_new_stream_transform_options
3602-
[`util.promisify()`]: util.html#util_util_promisify_original
3600+
[`stream.Writable` options]: stream.md#stream_new_stream_writable_options
3601+
[`stream.transform` options]: stream.md#stream_new_stream_transform_options
3602+
[`util.promisify()`]: util.md#util_util_promisify_original
36033603
[`verify.update()`]: #crypto_verify_update_data_inputencoding
36043604
[`verify.verify()`]: #crypto_verify_verify_object_signature_signatureencoding
36053605
[AEAD algorithms]: https://en.wikipedia.org/wiki/Authenticated_encryption
@@ -3620,10 +3620,10 @@ See the [list of SSL OP Flags][] for details.
36203620
[RFC 3610]: https://www.rfc-editor.org/rfc/rfc3610.txt
36213621
[RFC 4055]: https://www.rfc-editor.org/rfc/rfc4055.txt
36223622
[RFC 5208]: https://www.rfc-editor.org/rfc/rfc5208.txt
3623-
[encoding]: buffer.html#buffer_buffers_and_character_encodings
3623+
[encoding]: buffer.md#buffer_buffers_and_character_encodings
36243624
[initialization vector]: https://en.wikipedia.org/wiki/Initialization_vector
36253625
[list of SSL OP Flags]: https://wiki.openssl.org/index.php/List_of_SSL_OP_Flags#Table_of_Options
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
3628-
[stream]: stream.html
3629-
[stream-writable-write]: stream.html#stream_writable_write_chunk_encoding_callback
3628+
[stream]: stream.md
3629+
[stream-writable-write]: stream.md#stream_writable_write_chunk_encoding_callback

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.html
204+
[worker threads]: worker_threads.md
205205
[ndb]: https://github.com/GoogleChromeLabs/ndb/

0 commit comments

Comments
 (0)