From c04f3a466b12271bdee5d0a314bcefb49fb8666b Mon Sep 17 00:00:00 2001 From: teor Date: Fri, 25 Jun 2021 00:29:51 +1000 Subject: [PATCH] Remove an incorrect comment (#2456) It looks like this comment was copy-pasted from the previous doc test. --- futures-util/src/stream/select_with_strategy.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/futures-util/src/stream/select_with_strategy.rs b/futures-util/src/stream/select_with_strategy.rs index 1b501132c5..bd86990cdb 100644 --- a/futures-util/src/stream/select_with_strategy.rs +++ b/futures-util/src/stream/select_with_strategy.rs @@ -97,7 +97,6 @@ pin_project! { /// let left = repeat(1); /// let right = repeat(2); /// -/// // We don't need any state, so let's make it an empty tuple. /// let rrobin = |last: &mut PollNext| last.toggle(); /// /// let mut out = select_with_strategy(left, right, rrobin);