mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-18 00:00:09 +02:00
Fix TcpStream::try_clone error message (#946)
This commit is contained in:
@@ -785,7 +785,7 @@ impl TcpStream {
|
||||
// Rationale for deprecation:
|
||||
// - https://github.com/tokio-rs/tokio/pull/824
|
||||
// - https://github.com/tokio-rs/tokio/issues/774#issuecomment-451059317
|
||||
let msg = "`TcpStream::split()` is deprecated because it doesn't work as intended";
|
||||
let msg = "`TcpStream::try_clone()` is deprecated because it doesn't work as intended";
|
||||
Err(io::Error::new(io::ErrorKind::Other, msg))
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user