Skip to content

Commit

Permalink
Merge pull request #79 from dholbert/patch-1
Browse files Browse the repository at this point in the history
Fix typo in comment ('futher', missing an 'r')
  • Loading branch information
alexcrichton committed Sep 14, 2018
2 parents d6f7fe0 + 985f260 commit a3d51b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/unix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use ext::{self, AsSock};
pub trait UnixTcpBuilderExt {
/// Set value for the `SO_REUSEPORT` option on this socket.
///
/// This indicates that futher calls to `bind` may allow reuse of local
/// This indicates that further calls to `bind` may allow reuse of local
/// addresses. For IPv4 sockets this means that a socket may bind even when
/// there's a socket already listening on this port.
fn reuse_port(&self, reuse: bool) -> io::Result<&Self>;
Expand All @@ -35,7 +35,7 @@ impl UnixTcpBuilderExt for TcpBuilder {
pub trait UnixUdpBuilderExt {
/// Set value for the `SO_REUSEPORT` option on this socket.
///
/// This indicates that futher calls to `bind` may allow reuse of local
/// This indicates that further calls to `bind` may allow reuse of local
/// addresses. For IPv4 sockets this means that a socket may bind even when
/// there's a socket already listening on this port.
fn reuse_port(&self, reuse: bool) -> io::Result<&Self>;
Expand Down

0 comments on commit a3d51b3

Please sign in to comment.