From 0b0fc122b81707e210c2be9d4c4039ddd5aeeb0b Mon Sep 17 00:00:00 2001 From: Collin Styles Date: Sat, 28 Oct 2023 09:33:08 -0700 Subject: [PATCH] Fix the documentation for the `TryAny` adapter --- futures-util/src/stream/try_stream/try_any.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/futures-util/src/stream/try_stream/try_any.rs b/futures-util/src/stream/try_stream/try_any.rs index 15adb3097..55e876be0 100644 --- a/futures-util/src/stream/try_stream/try_any.rs +++ b/futures-util/src/stream/try_stream/try_any.rs @@ -7,7 +7,7 @@ use futures_core::task::{Context, Poll}; use pin_project_lite::pin_project; pin_project! { - /// Future for the [`any`](super::StreamExt::any) method. + /// Future for the [`try_any`](super::TryStreamExt::try_any) method. #[must_use = "futures do nothing unless you `.await` or poll them"] pub struct TryAny { #[pin]