From 778e9d97d91cff2c3036cc5663936d479edb30cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Paternoster?= Date: Wed, 3 Jun 2026 17:37:57 +0200 Subject: [PATCH] tests: fix typo in io_uring support functions docs (#8186) --- tokio/tests/support/io_uring.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/tests/support/io_uring.rs b/tokio/tests/support/io_uring.rs index affb2f833..35427ffd5 100644 --- a/tokio/tests/support/io_uring.rs +++ b/tokio/tests/support/io_uring.rs @@ -10,7 +10,7 @@ use io_uring::IoUring; // Currently, we are running some of the tests on Kernels where io_uring is not supported // to check if the fallback mechanism works, this comes with the limitation that we are not -// able to run some checks (e.g., asserting a poll returns pending). This utiliy function +// able to run some checks (e.g., asserting a poll returns pending). This utility function // is useful when we want to run a test only in Linux targets where io_uring is supported. pub fn io_uring_supported() -> bool { match IoUring::new(256) {