From 0cbbca984a09ee06c4e0554c14bf773601a99633 Mon Sep 17 00:00:00 2001 From: galaxy4276 Date: Sat, 18 Apr 2026 21:45:05 +0900 Subject: [PATCH] src: fix dead inspector help URL The URL printed when running `node --inspect` pointed to https://nodejs.org/en/docs/inspector which returns 404. Update it to https://nodejs.org/api/inspector.html which is the current location of the inspector API documentation. Fixes: #62743 Co-Authored-By: Claude Sonnet 4.6 --- src/inspector_socket_server.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/inspector_socket_server.cc b/src/inspector_socket_server.cc index 4df85fe8461bae..f5d1ea5bd09ff4 100644 --- a/src/inspector_socket_server.cc +++ b/src/inspector_socket_server.cc @@ -248,7 +248,7 @@ void PrintDebuggerReadyMessage( } } fprintf(out, "For help, see: %s\n", - "https://nodejs.org/en/docs/inspector"); + "https://nodejs.org/api/inspector.html"); fflush(out); }