From beda2dd3be341ab9293269b37dcf33ec26f440eb Mon Sep 17 00:00:00 2001 From: HoonDongKang Date: Wed, 19 Aug 2026 14:35:15 +0900 Subject: [PATCH] doc: update outdated nodejs.org guide links Update outdated `nodejs.org/en/docs/guides/...` links to their current `nodejs.org/learn/...` destinations. Signed-off-by: HoonDongKang --- doc/api/cli.md | 2 +- doc/api/n-api.md | 2 +- doc/api/timers.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/cli.md b/doc/api/cli.md index 514af04c02cd..56c184e51f47 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -4563,7 +4563,7 @@ node --stack-trace-limit=12 -p -e "Error.stackTraceLimit" # prints 12 [conditional exports]: packages.md#conditional-exports [context-aware]: addons.md#context-aware-addons [debugger]: debugger.md -[debugging security implications]: https://nodejs.org/en/docs/guides/debugging-getting-started/#security-implications +[debugging security implications]: https://nodejs.org/learn/getting-started/debugging#security-implications [deprecation warnings]: deprecations.md#list-of-deprecated-apis [dtls documentation]: dtls.md [emit_warning]: process.md#processemitwarningwarning-options diff --git a/doc/api/n-api.md b/doc/api/n-api.md index 72410ab7b540..ac1f1233b1d1 100644 --- a/doc/api/n-api.md +++ b/doc/api/n-api.md @@ -6962,7 +6962,7 @@ node_api_get_module_file_name(node_api_basic_env env, const char** result); `result` may be an empty string if the add-on loading process fails to establish the add-on's file name during loading. -[ABI Stability]: https://nodejs.org/en/docs/guides/abi-stability/ +[ABI Stability]: https://nodejs.org/learn/modules/abi-stability [AppVeyor]: https://www.appveyor.com [C++ Addons]: addons.md [CMake]: https://cmake.org diff --git a/doc/api/timers.md b/doc/api/timers.md index 7c91543c4573..cdbed03ba7ac 100644 --- a/doc/api/timers.md +++ b/doc/api/timers.md @@ -600,7 +600,7 @@ being developed as a standard Web Platform API. Calling `timersPromises.scheduler.yield()` is equivalent to calling `timersPromises.setImmediate()` with no arguments. -[Event Loop]: https://nodejs.org/en/docs/guides/event-loop-timers-and-nexttick/#setimmediate-vs-settimeout +[Event Loop]: https://nodejs.org/learn/asynchronous-work/event-loop-timers-and-nexttick#setimmediate-vs-settimeout [Scheduling APIs]: https://github.com/WICG/scheduling-apis [`AbortController`]: globals.md#class-abortcontroller [`TypeError`]: errors.md#class-typeerror