From 985f260cede062c30ad5013e2d2cdcb1b6aaeb54 Mon Sep 17 00:00:00 2001 From: Daniel Holbert Date: Fri, 14 Sep 2018 13:56:45 -0700 Subject: [PATCH] Fix typo in comment ('futher', missing an 'r') --- src/unix.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/unix.rs b/src/unix.rs index 21dcb2a..a1e1c6f 100644 --- a/src/unix.rs +++ b/src/unix.rs @@ -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>; @@ -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>;