Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tokio/src/net/tcp/socket.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ impl TcpSocket {
}

/// Allows the socket to bind to an in-use port. Only available for unix systems
/// (excluding Solaris & Illumos).
/// (excluding Solaris, Illumos, and Cygwin).
///
/// Behavior is platform specific. Refer to the target platform's
/// documentation for more details.
Expand Down Expand Up @@ -296,7 +296,7 @@ impl TcpSocket {
}

/// Allows the socket to bind to an in-use port. Only available for unix systems
/// (excluding Solaris & Illumos).
/// (excluding Solaris, Illumos, and Cygwin).
///
/// Behavior is platform specific. Refer to the target platform's
/// documentation for more details.
Expand Down
Loading