Skip to content

Commit daa56ca

Browse files
Update issue number to point to tracking issue
1 parent 02ea1ca commit daa56ca

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

library/std/src/net/tcp.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ impl TcpStream {
499499
/// let stream = TcpStream::connect("127.0.0.1:8080")
500500
/// .expect("Couldn't connect to the server...");
501501
/// stream.set_keepalive(true).expect("set_keepalive call failed");
502-
#[unstable(feature = "tcp_keepalive", issue = "69774")]
502+
#[unstable(feature = "tcp_keepalive", issue = "155889")]
503503
pub fn set_keepalive(&self, keepalive: bool) -> io::Result<()> {
504504
self.0.set_keepalive(keepalive)
505505
}
@@ -520,7 +520,7 @@ impl TcpStream {
520520
/// stream.set_keepalive(true).expect("set_keepalive call failed");
521521
/// assert_eq!(stream.keepalive().unwrap_or(false), true);
522522
/// ```
523-
#[unstable(feature = "tcp_keepalive", issue = "69774")]
523+
#[unstable(feature = "tcp_keepalive", issue = "155889")]
524524
pub fn keepalive(&self) -> io::Result<bool> {
525525
self.0.keepalive()
526526
}

0 commit comments

Comments
 (0)