Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions library/std/src/net/tcp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -582,8 +582,8 @@ impl TcpStream {
/// to be retried, an error with kind [`io::ErrorKind::WouldBlock`] is
/// returned.
///
/// On Unix platforms, calling this method corresponds to calling `fcntl`
/// `FIONBIO`. On Windows calling this method corresponds to calling
/// On most Unix platforms, calling this method corresponds to calling `ioctl`
/// `FIONBIO`. On Windows, calling this method corresponds to calling
/// `ioctlsocket` `FIONBIO`.
///
/// # Examples
Expand Down Expand Up @@ -988,8 +988,8 @@ impl TcpListener {
/// IO operation could not be completed and needs to be retried, an error
/// with kind [`io::ErrorKind::WouldBlock`] is returned.
///
/// On Unix platforms, calling this method corresponds to calling `fcntl`
/// `FIONBIO`. On Windows calling this method corresponds to calling
/// On most Unix platforms, calling this method corresponds to calling `ioctl`
/// `FIONBIO`. On Windows, calling this method corresponds to calling
/// `ioctlsocket` `FIONBIO`.
///
/// # Examples
Expand Down
4 changes: 2 additions & 2 deletions library/std/src/net/udp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -786,8 +786,8 @@ impl UdpSocket {
/// and needs to be retried, an error with kind
/// [`io::ErrorKind::WouldBlock`] is returned.
///
/// On Unix platforms, calling this method corresponds to calling `fcntl`
/// `FIONBIO`. On Windows calling this method corresponds to calling
/// On most Unix platforms, calling this method corresponds to calling `ioctl`
/// `FIONBIO`. On Windows, calling this method corresponds to calling
/// `ioctlsocket` `FIONBIO`.
///
/// # Examples
Expand Down
Loading