Skip to content

Commit 0cbbca9

Browse files
galaxy4276claude
andcommitted
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 <noreply@anthropic.com>
1 parent 31b9e60 commit 0cbbca9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/inspector_socket_server.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ void PrintDebuggerReadyMessage(
248248
}
249249
}
250250
fprintf(out, "For help, see: %s\n",
251-
"https://nodejs.org/en/docs/inspector");
251+
"https://nodejs.org/api/inspector.html");
252252
fflush(out);
253253
}
254254

0 commit comments

Comments
 (0)