Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
doc: restore backtick p-3
  • Loading branch information
Jeevankumar-S committed Jan 17, 2026
commit e342847f9a39eb9c24d95e1a9992448d0623ad7e
6 changes: 3 additions & 3 deletions doc/api/process.md
Original file line number Diff line number Diff line change
Expand Up @@ -833,10 +833,10 @@ added: v0.1.27

The `process.argv` property returns an array containing the command-line
arguments passed when the Node.js process was launched. The first element will
be [process.execPath][]. See process.argv0 if access to the original value
of argv[0] is needed. The second element will be the path to the JavaScript
be [`process.execPath`][]. See `process.argv0` if access to the original value
of `argv[0]` is needed. The second element will be the path to the JavaScript
Comment thread
Jeevankumar-s marked this conversation as resolved.
Outdated
file being executed (if a script file is provided). For no-script
execution modes (e.g., -e/--eval), the second element is the first unconsumed
execution modes (e.g., `-e`/`--eval`), the second element is the first unconsumed
command-line argument. The remaining elements are additional command-line
arguments.

Expand Down