summaryrefslogtreecommitdiff
path: root/ext/net/tcp.rs
diff options
context:
space:
mode:
authorfindmyhappy <167661649+findmyhappy@users.noreply.github.com>2024-04-30 15:59:56 +0800
committerGitHub <noreply@github.com>2024-04-30 17:59:56 +1000
commitce4a7773ccb606c51c824881e37043bc937c94f2 (patch)
tree571f819ff238c3b2e43072caa81bb740df1d5073 /ext/net/tcp.rs
parent850331164138233ea86c9a5032d99ad29c79efe1 (diff)
docs: fix some typos in comments (#23520)
Diffstat (limited to 'ext/net/tcp.rs')
-rw-r--r--ext/net/tcp.rs2
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();