diff --git a/tokio/src/net/tcp/listener.rs b/tokio/src/net/tcp/listener.rs index c611dbddd..c8f8be063 100644 --- a/tokio/src/net/tcp/listener.rs +++ b/tokio/src/net/tcp/listener.rs @@ -75,7 +75,7 @@ impl TcpListener { /// the addresses succeed in creating a listener, the error returned from /// the last attempt (the last address) is returned. /// - /// This function sets the `SO_REUSEADDR` option on the socket. + /// This function sets the `SO_REUSEADDR` option on the socket on Unix. /// /// To configure the socket before binding, you can use the [`TcpSocket`] /// type.