From d360e665938f09d076caf36f19a0190091cc4f4c 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);