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: ///