From 63395f061ed8389ea05610c5d7fbc7be166c77f4 Mon Sep 17 00:00:00 2001 From: Ibraheem Ahmed Date: Sun, 21 Mar 2021 15:10:28 -0400 Subject: [PATCH] macros: fix typo in select macro docs (#3629) --- tokio/src/macros/select.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/macros/select.rs b/tokio/src/macros/select.rs index 9ecfe9b34..ed41fb08b 100644 --- a/tokio/src/macros/select.rs +++ b/tokio/src/macros/select.rs @@ -134,7 +134,7 @@ /// are always ready. /// /// This behavior can be overridden by adding `biased;` to the beginning of the -/// macro usage. See the exmples for details. This will cause `select` to poll +/// macro usage. See the examples for details. This will cause `select` to poll /// the futures in the order they appear from top to bottom. There are a few /// reasons you may want this: ///