Skip to content

Commit 6c44ee6

Browse files
committed
src: fix dead inspector help URL
`node --inspect` prints "For help, see: https://nodejs.org/en/docs/inspector", which 404s. Point at the live API docs instead. Closes #62743
1 parent ed05549 commit 6c44ee6

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)