Fix TcpStream::try_clone error message (#946)

This commit is contained in:
Blake Smith 2019-03-04 16:17:08 -06:00 committed by Carl Lerche
parent e28856cffe
commit 9be5f3f9ff

View File

@ -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))
}
}