summaryrefslogtreecommitdiffstats
path: root/tokio/src/macros
diff options
context:
space:
mode:
authors0lst1ce <46009999+s0lst1ce@users.noreply.github.com>2020-06-15 15:30:50 +0200
committerGitHub <noreply@github.com>2020-06-15 15:30:50 +0200
commit2bc6bc14a82dc4c8d447521005e044028ae199fe (patch)
tree704247681383538ed73406fc5c4aee428239789a /tokio/src/macros
parentd2f81b506a469481ab0b62aaeaf48fc8c60e4c66 (diff)
doc: fix typo on select macro (#2622)
Diffstat (limited to 'tokio/src/macros')
-rw-r--r--tokio/src/macros/select.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio/src/macros/select.rs b/tokio/src/macros/select.rs
index fc932bb9..52c8fdd3 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 `<precondition>` expressions. If the precondition
+/// 1. Evaluate all provided `<precondition>` 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.