From 5073eb9729d4d812f6ee4a42529bbc1c928b1a10 Mon Sep 17 00:00:00 2001 From: Frank Steffahn Date: Tue, 14 Dec 2021 16:56:34 +0100 Subject: [PATCH] Fix a typo --- futures-util/src/stream/select_with_strategy.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/futures-util/src/stream/select_with_strategy.rs b/futures-util/src/stream/select_with_strategy.rs index 2673a4c2bd..6ccb321aaf 100644 --- a/futures-util/src/stream/select_with_strategy.rs +++ b/futures-util/src/stream/select_with_strategy.rs @@ -81,7 +81,7 @@ pin_project! { /// let mut out = select_with_strategy(left, right, prio_left); /// /// for _ in 0..100 { -/// // Whenever we poll out, we will alwas get `1`. +/// // Whenever we poll out, we will always get `1`. /// assert_eq!(1, out.select_next_some().await); /// } /// # });