From 761029cd08901179e37e816c10b97c7f86c91679 Mon Sep 17 00:00:00 2001 From: Yoshua Wuyts Date: Fri, 13 Dec 2019 15:28:09 +0100 Subject: [PATCH] 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;