From 2bc6bc14a82dc4c8d447521005e044028ae199fe Mon Sep 17 00:00:00 2001 From: s0lst1ce <46009999+s0lst1ce@users.noreply.github.com> Date: Mon, 15 Jun 2020 15:30:50 +0200 Subject: [PATCH] doc: fix typo on select macro (#2622) --- 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 fc932bb90..52c8fdd34 100644 --- a/tokio/src/macros/select.rs +++ b/tokio/src/macros/select.rs @@ -30,7 +30,7 @@ /// /// The complete lifecycle of a `select!` expression is as follows: /// -/// 1. Evaluate all provded `` expressions. If the precondition +/// 1. Evaluate all provided `` expressions. If the precondition /// returns `false`, disable the branch for the remainder of the current call /// to `select!`. Re-entering `select!` due to a loop clears the "disabled" /// state.