diff --git a/src/stream/stream/mod.rs b/src/stream/stream/mod.rs index 72bee64..89881c0 100644 --- a/src/stream/stream/mod.rs +++ b/src/stream/stream/mod.rs @@ -137,7 +137,6 @@ pub trait Stream { /// Basic usage: /// /// ``` - /// /// # fn main() { async_std::task::block_on(async { /// # /// use std::collections::VecDeque; @@ -158,7 +157,6 @@ pub trait Stream { /// /// let end = parsed.next().await; /// assert_eq!(end, None); - /// /// # /// # }) } fn filter_map(self, f: F) -> FilterMap