From 687edba96cab795e3270f5e46b915f2567e03e95 Mon Sep 17 00:00:00 2001 From: teor Date: Thu, 24 Jun 2021 21:28:23 +1000 Subject: [PATCH] Remove an incorrect comment 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);