From 761029cd08901179e37e816c10b97c7f86c91679 Mon Sep 17 00:00:00 2001 From: Yoshua Wuyts Date: Fri, 13 Dec 2019 15:28:09 +0100 Subject: [PATCH 1/2] fix stream doc hiccup Signed-off-by: Yoshua Wuyts --- src/stream/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stream/mod.rs b/src/stream/mod.rs index ebce3a3..4e54221 100644 --- a/src/stream/mod.rs +++ b/src/stream/mod.rs @@ -308,7 +308,7 @@ pub use repeat::{repeat, Repeat}; pub use repeat_with::{repeat_with, RepeatWith}; pub use stream::*; -pub mod stream; +pub(crate) mod stream; mod empty; mod from_fn; From c70552ead53dbaff8f0d70008b4b2a6c3036bc83 Mon Sep 17 00:00:00 2001 From: Yoshua Wuyts Date: Mon, 16 Dec 2019 09:37:14 +0100 Subject: [PATCH 2/2] unpub double_ended_stream Signed-off-by: Yoshua Wuyts --- src/stream/mod.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/stream/mod.rs b/src/stream/mod.rs index 4e54221..d8b96ec 100644 --- a/src/stream/mod.rs +++ b/src/stream/mod.rs @@ -318,8 +318,7 @@ mod repeat; mod repeat_with; cfg_unstable! { - #[doc(hidden)] - pub mod double_ended_stream; + mod double_ended_stream; mod exact_size_stream; mod extend; mod from_stream;