diff --git a/tokio/src/net/unix/stream.rs b/tokio/src/net/unix/stream.rs index 26fe9e406d7..2391d54b46e 100644 --- a/tokio/src/net/unix/stream.rs +++ b/tokio/src/net/unix/stream.rs @@ -974,7 +974,7 @@ impl UnixStream { /// Unlike [`split`], the owned halves can be moved to separate tasks, however /// this comes at the cost of a heap allocation. /// - /// **Note:** Dropping the write half will shut down the write half of the + /// **Note:** Dropping the write half will only shut down the write half of the /// stream. This is equivalent to calling [`shutdown()`] on the `UnixStream`. /// /// [`split`]: Self::split()