From 73e8937cc5ecbc826655263197360fd570a4f915 Mon Sep 17 00:00:00 2001 From: Giorgio Maria Federico Birnthaler <129273127+Dodothereal@users.noreply.github.com> Date: Tue, 23 Jun 2026 22:03:19 +0200 Subject: [PATCH] util: fix typo in blocking_check.rs comment (#8223) Replace 'i dont' with 'i don't' in the cfg(not(unix)) stub of 'check_socket_for_blocking'. The line is a casual internal comment about why WASI is not yet supported there; it just needs the missing apostrophe. --- tokio/src/util/blocking_check.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/util/blocking_check.rs b/tokio/src/util/blocking_check.rs index f7f35f6a1..be5b8b4de 100644 --- a/tokio/src/util/blocking_check.rs +++ b/tokio/src/util/blocking_check.rs @@ -24,6 +24,6 @@ pub(crate) fn check_socket_for_blocking(s: &S) -> crate::io::Result<()> #[allow(unused_variables)] pub(crate) fn check_socket_for_blocking(s: &S) -> crate::io::Result<()> { // we cannot retrieve the nonblocking status on windows - // and i dont know how to support wasi yet + // and i don't know how to support wasi yet Ok(()) }