Uh oh!
There was an error while loading. Please reload this page.
Rollup of 7 pull requests - #33204
Conversation
Manishearth
commented
Apr 25, 2016
- Successful merges: Show previous definition of duplicate impl item #33107, rustdoc: inline all the impls #33133, show unstable status for deprecated items #33160, clarify documentation of TcpStream::connect() for multiple valid addresses #33167, rustdoc: Improve accessibility of rustdoc pages #33194, rustdoc: Linkify extern crates #33196, Fix reference to TCP in UDP docs #33200
- Failed merges:
…esses Signed-off-by: benaryorg <binary@benary.org>
This used to be done to avoid inlining impls referencing private items, but is now unnecessary since we actually check that impls do not reference non-doc-reachable items.
An item is inlined and recorded as inlined even if it is `doc(hidden)`, leading to unchecked external links.
Show previous definition of duplicate impl item Fixrust-lang#32971.
…ichton rustdoc: inline all the impls This used to be done to avoid inlining impls referencing private items, but is now unnecessary since we actually check that impls do not reference non-doc-reachable items. fixesrust-lang#32881fixesrust-lang#33025fixesrust-lang#33113 r? @alexcrichton
… r=alexcrichton show unstable status for deprecated items Fixesrust-lang#32374.
clarify documentation of TcpStream::connect() for multiple valid addresses I am not sure how the UDP part of the stdlib behaves when passing multiple valid addresses, but it should be mentioned as there are legit use cases for [`impl<'a> ToSocketAddrs for &'a [SocketAddr]`](http://doc.rust-lang.org/nightly/std/net/trait.ToSocketAddrs.html), a TCP fallback only being one. Just a little example program for anyone willing to enhance the documentation further: ```rust use std::net::SocketAddr; use std::net::ToSocketAddrs; use std::net::TcpStream; fn main() { let v: Vec<SocketAddr> = vec! [ "127.0.0.1:1338".to_socket_addrs().unwrap().next().unwrap(), "127.0.0.1:1337".to_socket_addrs().unwrap().next().unwrap(), "127.0.0.1:1339".to_socket_addrs().unwrap().next().unwrap(), ]; let stream = TcpStream::connect(&v[..]).unwrap(); } ```
rustdoc: Improve accessibility of rustdoc pages fixesrust-lang#33131 r? @alexcrichton
rustdoc: Linkify extern crates fixesrust-lang#33178 r? @alexcrichton
…ichton Fix reference to TCP in UDP docs Closees rust-lang#33195
Manishearth
commented
Apr 25, 2016
@bors r+ p=10 |
bors
commented
Apr 25, 2016
📌 Commit 3dc0b55 has been approved by |
bors
commented
Apr 25, 2016
bors
commented
Apr 25, 2016
💔 Test failed - auto-win-msvc-32-opt |
alexcrichton
commented
Apr 25, 2016
@bors: retry On Mon, Apr 25, 2016 at 3:25 PM, bors notifications@github.com wrote:
|
Manishearth
commented
Apr 25, 2016
@bors force |
bors
commented
Apr 25, 2016
bors
commented
Apr 26, 2016
💔 Test failed - auto-linux-64-x-android-t |
Manishearth
commented
Apr 26, 2016
@bors retry force looks like gdb went boom? |
Manishearth
commented
Apr 26, 2016
@bors retry force |
bors
commented
Apr 26, 2016
bors
commented
Apr 26, 2016
💔 Test failed - auto-linux-64-x-android-t |
Manishearth
commented
Apr 26, 2016
@bors retry p=9 |