-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
docs: add link from zip to unzip #96038
Conversation
The docs for `Iterator::unzip` explain that it is kind of an inverse operation to `Iterator::zip` and guide the reader to the `zip` docs, but the `zip` docs don't let the user know that they can undo the `zip` operation with `unzip`. This change modifies the docs to help the user find `unzip`.
Hey! It looks like you've submitted a new PR for the library teams! If this PR contains changes to any Examples of
|
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @m-ou-se (or someone else) soon. Please see the contribution instructions for more information. |
Thanks! @bors r+ rollup |
📌 Commit f6d9577 has been approved by |
Oh, looks like the build is failing. @bors r- |
Co-authored-by: Mara Bos <m-ou.se@m-ou.se>
Ah that's annoying. Have removed the trailing whitespace. |
@bors r+ rollup |
📌 Commit d73e328 has been approved by |
This is my first PR, not sure if I need to take action now that the |
Nope! The status is now You can view the queue here: https://bors.rust-lang.org/queue/rust I marked this PR as 'rollup', since I don't expect any failures or performance impact. That means that someone might 'roll it up' together with a bunch of other similar pull requests into a single patch that bors can test at once, to speed things up. This PR will automatically get closed once bors merges it. |
Okay thanks so much! Really appreciate the explanations and welcoming attitude |
docs: add link from zip to unzip The docs for `Iterator::unzip` explain that it is kind of an inverse operation to `Iterator::zip` and guide the reader to the `zip` docs, but the `zip` docs don't let the user know that they can undo the `zip` operation with `unzip`. This change modifies the docs to help the user find `unzip`.
docs: add link from zip to unzip The docs for `Iterator::unzip` explain that it is kind of an inverse operation to `Iterator::zip` and guide the reader to the `zip` docs, but the `zip` docs don't let the user know that they can undo the `zip` operation with `unzip`. This change modifies the docs to help the user find `unzip`.
docs: add link from zip to unzip The docs for `Iterator::unzip` explain that it is kind of an inverse operation to `Iterator::zip` and guide the reader to the `zip` docs, but the `zip` docs don't let the user know that they can undo the `zip` operation with `unzip`. This change modifies the docs to help the user find `unzip`.
docs: add link from zip to unzip The docs for `Iterator::unzip` explain that it is kind of an inverse operation to `Iterator::zip` and guide the reader to the `zip` docs, but the `zip` docs don't let the user know that they can undo the `zip` operation with `unzip`. This change modifies the docs to help the user find `unzip`.
docs: add link from zip to unzip The docs for `Iterator::unzip` explain that it is kind of an inverse operation to `Iterator::zip` and guide the reader to the `zip` docs, but the `zip` docs don't let the user know that they can undo the `zip` operation with `unzip`. This change modifies the docs to help the user find `unzip`.
Rollup of 7 pull requests Successful merges: - rust-lang#95887 (resolve: Create dummy bindings for all unresolved imports) - rust-lang#96023 (couple of clippy::perf fixes) - rust-lang#96035 (Update GitHub Actions actions/checkout Version v2 -> v3) - rust-lang#96038 (docs: add link from zip to unzip) - rust-lang#96047 (:arrow_up: rust-analyzer) - rust-lang#96059 (clarify doc(cfg) wording) - rust-lang#96081 (Make some `usize`-typed masks definitions agnostic to the size of `usize`) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
There were a few issues with the automated tests spuriously failing, so it took a few tries, but your PR is merged now! (Usually it takes less time.) Your changes should be visible in the nightly documentation in about 7 hours from now, when the new nightly version is released. |
Thanks! Not sure my rust-fu is up to code changes just yet, but hopefully this won't be my last contribution :) |
The docs for
Iterator::unzip
explain that it is kind of an inverse operation toIterator::zip
and guide the reader to thezip
docs, but thezip
docs don't let the user know that they can undo thezip
operation withunzip
. This change modifies the docs to help the user findunzip
.