From 95fac7fa9286b48d5fe3defb0d9739408e085fae Mon Sep 17 00:00:00 2001 From: Daniel Holbert Date: Fri, 14 Sep 2018 13:57:47 -0700 Subject: [PATCH] Fix typo in comment ('futher', missing an 'r') (see also #79; same fix, different file) --- src/ext.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ext.rs b/src/ext.rs index 38185d6..0919a93 100644 --- a/src/ext.rs +++ b/src/ext.rs @@ -1421,7 +1421,7 @@ impl TcpBuilder { /// Set value for the `SO_REUSEADDR` 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. pub fn reuse_address(&self, reuse: bool) -> io::Result<&Self> {