-
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
Rollup of 7 pull requests #40969
Rollup of 7 pull requests #40969
Commits on Mar 15, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 70deac1 - Browse repository at this point
Copy the full SHA 70deac1View commit details
Commits on Mar 19, 2017
-
Configuration menu - View commit details
-
Copy full SHA for d6c8dde - Browse repository at this point
Copy the full SHA d6c8ddeView commit details
Commits on Mar 21, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 2715101 - Browse repository at this point
Copy the full SHA 2715101View commit details
Commits on Mar 23, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 4dc1225 - Browse repository at this point
Copy the full SHA 4dc1225View commit details -
Configuration menu - View commit details
-
Copy full SHA for 53d5082 - Browse repository at this point
Copy the full SHA 53d5082View commit details -
Configuration menu - View commit details
-
Copy full SHA for 04fbec1 - Browse repository at this point
Copy the full SHA 04fbec1View commit details
Commits on Mar 25, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 1cbfdf4 - Browse repository at this point
Copy the full SHA 1cbfdf4View commit details
Commits on Mar 27, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 4806f01 - Browse repository at this point
Copy the full SHA 4806f01View commit details
Commits on Mar 28, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 756f224 - Browse repository at this point
Copy the full SHA 756f224View commit details -
Configuration menu - View commit details
-
Copy full SHA for cd2ec7e - Browse repository at this point
Copy the full SHA cd2ec7eView commit details
Commits on Mar 29, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 11ce5b7 - Browse repository at this point
Copy the full SHA 11ce5b7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4ea03c8 - Browse repository at this point
Copy the full SHA 4ea03c8View commit details
Commits on Mar 30, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 9d4b486 - Browse repository at this point
Copy the full SHA 9d4b486View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0f5cf54 - Browse repository at this point
Copy the full SHA 0f5cf54View commit details -
Configuration menu - View commit details
-
Copy full SHA for 41e0498 - Browse repository at this point
Copy the full SHA 41e0498View commit details -
Configuration menu - View commit details
-
Copy full SHA for 17b4884 - Browse repository at this point
Copy the full SHA 17b4884View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5d14ccb - Browse repository at this point
Copy the full SHA 5d14ccbView commit details -
Configuration menu - View commit details
-
Copy full SHA for a4a7166 - Browse repository at this point
Copy the full SHA a4a7166View commit details -
Revert SplitWhitespace's description
Original headline of SplitWhitespace's description is more descriptive as to what it contains and iterates over.
Configuration menu - View commit details
-
Copy full SHA for c4b11d1 - Browse repository at this point
Copy the full SHA c4b11d1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3b39621 - Browse repository at this point
Copy the full SHA 3b39621View commit details
Commits on Mar 31, 2017
-
Test sort algorithms using a random cmp function
Stjepan Glavina committedMar 31, 2017 Configuration menu - View commit details
-
Copy full SHA for 0e2d3d4 - Browse repository at this point
Copy the full SHA 0e2d3d4View commit details -
Rollup merge of rust-lang#40541 - llogiq:clippy-libcollections, r=brson
fixed some clippy warnings in libcollections Some markdown fixes, a few readability improvements, but mostly trivial stuff.
Configuration menu - View commit details
-
Copy full SHA for 6db3051 - Browse repository at this point
Copy the full SHA 6db3051View commit details -
Rollup merge of rust-lang#40703 - GuillaumeGomez:pointer-docs, r=stev…
…eklabnik Add missing urls in ptr docs r? @rust-lang/docs
Configuration menu - View commit details
-
Copy full SHA for 81e7f35 - Browse repository at this point
Copy the full SHA 81e7f35View commit details -
Rollup merge of rust-lang#40728 - topecongiro:stabilize, r=arielb1
Make overlapping_inherent_impls lint a hard error Closes rust-lang#36889.
Configuration menu - View commit details
-
Copy full SHA for bd77add - Browse repository at this point
Copy the full SHA bd77addView commit details -
Rollup merge of rust-lang#40763 - pirate:patch-2, r=steveklabnik
Add helpful hint in io docs about how ? is not allowed in main() This is my effort to help alleviate the confusion caused by the error message: ```rust error[E0277]: the trait bound `(): std::ops::Carrier` is not satisfied --> hello_world.rs:72:5 | 72 | io::stdin().read_line(&mut d_input)?; | ------------------------------------ | | | the trait `std::ops::Carrier` is not implemented for `()` | in this macro invocation | = note: required by `std::ops::Carrier::from_error` error: aborting due to previous error ``` This has been discussed at length in rust-lang#35946, but I figured it would be helpful to mention in the docs. Reading user input is one of the first things beginners will look up in the docs, so my thinking was they'd see this warning here and not have to deal with the [tricky error message](https://blog.rust-lang.org/2017/03/02/lang-ergonomics.html). If you think this isn't the right place to put this in the docs, that's understandable, I'm open to suggestions for putting it elsewhere or removing it entirely.
Configuration menu - View commit details
-
Copy full SHA for 6de74a4 - Browse repository at this point
Copy the full SHA 6de74a4View commit details -
Rollup merge of rust-lang#40871 - projektir:atomic_links, r=steveklabnik
Adding links for Atomics docs rust-lang#29377 r? @steveklabnik This should be good for `std::sync::atomic`. The other pages still need more (examples, etc.).
Configuration menu - View commit details
-
Copy full SHA for f5d0105 - Browse repository at this point
Copy the full SHA f5d0105View commit details -
Rollup merge of rust-lang#40935 - donniebishop:str_boilerplate_docs, …
…r=steveklabnik Modify str Structs descriptions References rust-lang#29375. Modified descriptions of multiple structs to be more in line with structs found under [`std::iter`](https://doc.rust-lang.org/std/iter/#structs), such as [`Chain`](https://doc.rust-lang.org/std/iter/struct.Chain.html) and [`Enumerate`](https://doc.rust-lang.org/std/iter/struct.Enumerate.html)
Configuration menu - View commit details
-
Copy full SHA for cd631a9 - Browse repository at this point
Copy the full SHA cd631a9View commit details -
Rollup merge of rust-lang#40947 - stjepang:test-sort-random-cmp, r=al…
…excrichton Test sort algorithms using a random cmp function This ensures that sorting using a broken comparison function doesn't panic nor fail in some other way (especially not segfault). r? @alexcrichton
Configuration menu - View commit details
-
Copy full SHA for 07b657a - Browse repository at this point
Copy the full SHA 07b657aView commit details