From 9b381e427f90fe211f0b18adf6200ac5161678d3 Mon Sep 17 00:00:00 2001 From: Fedor Sakharov Date: Tue, 10 Sep 2019 15:01:25 +0300 Subject: [PATCH] Apply suggestions from code review Co-Authored-By: Yoshua Wuyts --- src/stream/stream/mod.rs | 2 -- 1 file changed, 2 deletions(-) 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