From b670600555087d013be35a872d1b019bdb5b029c Mon Sep 17 00:00:00 2001 From: Yoshua Wuyts Date: Wed, 18 Sep 2019 12:42:46 +0200 Subject: [PATCH] Update src/stream/into_stream.rs Co-Authored-By: Stjepan Glavina --- src/stream/into_stream.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stream/into_stream.rs b/src/stream/into_stream.rs index 0a986a8a..5e4311e6 100644 --- a/src/stream/into_stream.rs +++ b/src/stream/into_stream.rs @@ -14,7 +14,7 @@ use futures_core::stream::Stream; /// /// [`FromStream`]: trait.FromStream.html #[cfg_attr(feature = "docs", doc(cfg(unstable)))] -#[cfg(feature = "unstable")] +#[cfg(any(feature = "unstable", feature = "docs"))] pub trait IntoStream { /// The type of the elements being iterated over. type Item;