-
Notifications
You must be signed in to change notification settings - Fork 13k
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
Various std::process
doc improvements.
#34737
Conversation
@@ -91,7 +96,11 @@ impl IntoInner<imp::Process> for Child { | |||
fn into_inner(self) -> imp::Process { self.handle } | |||
} | |||
|
|||
/// A handle to a child process's stdin | |||
/// A handle to a child process's stdin. This struct is used in the [`stdin`] |
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 an english native but I'm pretty sure you don't write "process's" but "process'". But maybe I'm wrong so please correct me if this is the case.
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 would personally say process's, but I might be wrong and English is weird.
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.
Ah. It doesn't help. 😆
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.
process's
is correct.
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.
Then my bad!
For such small changes, I think one commit is more than enough. |
8abf789
to
d0b8114
Compare
Squashed. |
@bors: r+ rollup |
📌 Commit d0b8114 has been approved by |
⌛ Testing commit d0b8114 with merge 17964c8... |
💔 Test failed - auto-win-gnu-32-opt |
Error looks unrelated? |
Strange... @bors: retry |
⌛ Testing commit d0b8114 with merge e6576bc... |
💔 Test failed - auto-win-gnu-32-opt-rustbuild |
If anyone has any idea which of my links is broken, let me know. I don't have enough time right now to look into it, but it's not obvious to me which is broken. |
It's not clear to me either :/ |
/// | ||
/// Calling `wait` (or other functions that wrap around it) will make the | ||
/// Calling [`wait`] (or other functions that wrap around it) will make the |
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.
It is this link which is broken.
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.
How is this link broken?
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.
Does it think (or other functions that wrap around it)
is the href
? Is there a way around this if so?
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.
Yeah that's how markdown is interpreting it, you may be able to escape it via \(
I believe
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 just force pushed. Changed it to:
[`wait`][`wait`]
* Link to `process::Command` from `process::Child`. * Move out inline Markdown link in doc comment. * Link to `process::Child::wait` from `process::Child`. * Link to `process::Child` from `process::ChildStdin`. * Link to `process::Child` from `process::ChildStdout`. * Link to `process::Child` from `process::ChildStderr`.
d0b8114
to
97d96bd
Compare
@bors: r+ rollup |
📌 Commit 97d96bd has been approved by |
…illaumeGomez Various `std::process` doc improvements. None
No description provided.