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.
This commit is contained in:
Giorgio Maria Federico Birnthaler
2026-06-23 20:03:19 +00:00
committed by GitHub
parent 630ec12a4f
commit 73e8937cc5
+1 -1
View File
@@ -24,6 +24,6 @@ pub(crate) fn check_socket_for_blocking<S: AsFd>(s: &S) -> crate::io::Result<()>
#[allow(unused_variables)]
pub(crate) fn check_socket_for_blocking<S>(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(())
}