-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doc: make execFileSync in line with execFile #2940
Conversation
make execFileSync API docs in line with execFile API docs
LGTM |
@lfortin while you're at it, could you move the whole |
103d869
to
66a6f76
Compare
@silverwind done. |
@lfortin The diff looks a bit unwieldy, this is just a cut-paste job, right? |
@silverwind yes it is. I confirm that the text is well formatted. |
Alright, LGTM. |
@@ -735,10 +735,15 @@ If the process times out, or has a non-zero exit code, this method ***will*** | |||
throw. The `Error` object will contain the entire result from | |||
[`child_process.spawnSync`](#child_process_child_process_spawnsync_command_args_options) | |||
|
|||
[EventEmitter]: events.html#events_class_events_eventemitter | |||
[net.Server]: net.html#net_class_net_server | |||
[net.Socket]: net.html#net_class_net_socket |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure these should have moved. Isn't there a convention to put the link definitions at the end of the file ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, good catch. These should indeed remain an the end of the file, @lfortin.
@targos I see, my bad. I will re-issue a new commit with the link definitions at the end of the file. /cc @silverwind |
6b69b3d
to
66a6f76
Compare
@targos @silverwind done. |
@@ -766,6 +767,7 @@ If the process times out, or has a non-zero exit code, this method ***will*** | |||
throw. The `Error` object will contain the entire result from | |||
[`child_process.spawnSync`](#child_process_child_process_spawnsync_command_args_options) | |||
|
|||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm sorry but this looks like an unnecessary newline.
e05bb82
to
66a6f76
Compare
rearrange execSync, execFileSync API docs to be in line with exec, execFile API docs
@silverwind unnecessary new line removed. |
LGTM |
1 similar comment
LGTM |
PR-URL: #2940 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Roman Reiss <[email protected]>
Changed the ordering so it is in line with the async methods. PR-URL: #2940 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Roman Reiss <[email protected]>
PR-URL: #2940 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Roman Reiss <[email protected]>
Changed the ordering so it is in line with the async methods. PR-URL: #2940 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Roman Reiss <[email protected]>
Make execFileSync API docs in line with execFile API docs.