Skip to content

Commit

Permalink
Fix TcpStream::connect_timeout tracking issue number
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Aug 13, 2017
1 parent 14fb329 commit aea61e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/net/tcp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ impl TcpStream {
/// connection request.
///
/// [`SocketAddr`]: ../../std/net/enum.SocketAddr.html
#[unstable(feature = "tcpstream_connect_timeout", issue = "43709")]
#[unstable(feature = "tcpstream_connect_timeout", issue = "43079")]
pub fn connect_timeout(addr: &SocketAddr, timeout: Duration) -> io::Result<TcpStream> {
net_imp::TcpStream::connect_timeout(addr, timeout).map(TcpStream)
}
Expand Down

0 comments on commit aea61e6

Please sign in to comment.