Uh oh!
There was an error while loading. Please reload this page.
fix off by one in std::iter::Iterator documentation - #86111
Conversation
rust-highfive
commented
Jun 7, 2021
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @dtolnay (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
camsteffen
commented
Jun 8, 2021
Or "to eight"? 🤷 |
CDirkx
commented
Jun 8, 2021
Or "The even numbers less than ten" |
Uh oh!
There was an error while loading. Please reload this page.
Co-authored-by: Yuki Okushi <jtitor@2k36.org>
JohnTitor
commented
Jun 9, 2021
Thanks! @bors r+ rollup |
bors
commented
Jun 9, 2021
📌 Commit acc65cc has been approved by |
Rollup of 7 pull requests Successful merges: - rust-lang#82037 (Make symbols stripping work on MacOS X) - rust-lang#84687 (Multiple improvements to RwLocks) - rust-lang#85997 (rustdoc: Print a warning if the diff when comparing to old nightlies is empty) - rust-lang#86051 (Updated code examples and wording in move keyword documentation ) - rust-lang#86111 (fix off by one in `std::iter::Iterator` documentation) - rust-lang#86113 (build doctests with lld if use-lld = true) - rust-lang#86175 (update Miri) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
fix off by one in `std::iter::Iterator` documentation the range `(0..10)` is documented as "The even numbers from zero to ten." - should be ".. to nine".
the range
(0..10)is documented as "The even numbers from zero to ten." - should be ".. to nine".