diff options
Diffstat (limited to 'ext/net/tcp.rs')
-rw-r--r-- | ext/net/tcp.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/net/tcp.rs b/ext/net/tcp.rs index 583620243..63baa8e4b 100644 --- a/ext/net/tcp.rs +++ b/ext/net/tcp.rs @@ -7,7 +7,7 @@ use socket2::Domain; use socket2::Protocol; use socket2::Type; -/// Our per-process `Connections`. We can use this to find an existant listener for +/// Our per-process `Connections`. We can use this to find an existent listener for /// a given local address and clone its socket for us to listen on in our thread. static CONNS: std::sync::OnceLock<std::sync::Mutex<Connections>> = std::sync::OnceLock::new(); |