-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Link std::process::Output to Command and Child #45113
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
Conversation
Thanks for the PR! We’ll periodically check in on it to make sure that @steveklabnik or someone else from the team reviews it soon. |
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.
Thank you! One small change, and afterwards, this is good to merge!
src/libstd/process.rs
Outdated
@@ -701,7 +701,14 @@ impl AsInnerMut<imp::Command> for Command { | |||
fn as_inner_mut(&mut self) -> &mut imp::Command { &mut self.inner } | |||
} | |||
|
|||
/// The output of a finished process. | |||
/// The output of a finished process. This is returned in a Result by |
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.
Could you put some newlines between the first and second sentences here? The first sentence operates as a summary, so it's helpful to add space.
/// The output of a finished process.
///
/// This is returned in a Result...
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.
Done. I think that does look neater :)
@bors r=steveklabnik rollup |
📌 Commit 8c4a68d has been approved by |
…labnik Link std::process::Output to Command and Child As per rust-lang#29370
…labnik Link std::process::Output to Command and Child As per rust-lang#29370
As per #29370