-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Add documentation for anonymous pipe module #133986
Add documentation for anonymous pipe module #133986
Conversation
This comment was marked as resolved.
This comment was marked as resolved.
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @NobodyXu (or someone else) some time within the next two weeks. Please see the contribution instructions for more information. Namely, in order to ensure the minimum review times lag, PR authors and assigned reviewers should ensure that the review label (
|
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
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 so much!
I just have 3 suggestions:
f850623
to
39212d8
Compare
@rustbot review |
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.
Thanks, just one final comment:
39212d8
to
6ef2822
Compare
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!
It LGTM, but unfortunately I don't have power to merge, you'd need to r?
to assign another rust member to merge it.
Sorry I should say this earlier
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
r? libs |
Thanks, these docs are a great update! Could you add some comments to the examples explaining what is going on? E.g. Also do these need to be r? tgross35 |
6ef2822
to
83110fa
Compare
Done.
I think it's better to leave them |
83110fa
to
fb6a19b
Compare
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 think it's better to leave them
no_run
rather than chance breaking someone's build. For example, posix shell doesn't supportread -n
.
That one in particular should stay no_run
anyway since it writes to the file system. The others would be okay but no harm in skipping them.
Can you just confirm that these tests do pass on your system or on the playground?
I tested the examples without |
Great, thanks! @bors r+ rollup |
Sorry @tgross35, I only realized you had approved the changes after I requested another review. Not sure what happens now, but thanks for looking it over and for the great suggestions. |
GH reviews are just a nice API but don't really matter (I only re-approved to dismiss the review request :) ), Bors handles merging. My |
…iaskrgr Rollup of 7 pull requests Successful merges: - rust-lang#132939 (Suggest using deref in patterns) - rust-lang#133293 (Updates Solaris target information, adds Solaris maintainer) - rust-lang#133392 (Fix ICE when multiple supertrait substitutions need assoc but only one is provided) - rust-lang#133986 (Add documentation for anonymous pipe module) - rust-lang#134022 (Doc: Extend for tuples to be stabilized in 1.85.0) - rust-lang#134259 (Clean up `infer_return_ty_for_fn_sig`) - rust-lang#134264 (Arbitrary self types v2: Weak & NonNull diagnostics) r? `@ghost` `@rustbot` modify labels: rollup
Rollup merge of rust-lang#133986 - olishmollie:tracking-issue-127154-documentation, r=tgross35 Add documentation for anonymous pipe module Tracking issue: rust-lang#127154 `@NobodyXu` I've been using this feature lately and thought I might contribute with some documentation. I borrowed liberally from [os_pipe](https://docs.rs/os_pipe/latest/os_pipe/) so thanks to `@oconnor663.`
Tracking issue: #127154
@NobodyXu I've been using this feature lately and thought I might contribute with some documentation. I borrowed liberally from os_pipe so thanks to @oconnor663.