Skip to content

Commit 9b381e4

Browse files
Apply suggestions from code review
Co-Authored-By: Yoshua Wuyts <[email protected]>
1 parent 55bdea4 commit 9b381e4

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/stream/stream/mod.rs

-2
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@ pub trait Stream {
137137
/// Basic usage:
138138
///
139139
/// ```
140-
///
141140
/// # fn main() { async_std::task::block_on(async {
142141
/// #
143142
/// use std::collections::VecDeque;
@@ -158,7 +157,6 @@ pub trait Stream {
158157
///
159158
/// let end = parsed.next().await;
160159
/// assert_eq!(end, None);
161-
///
162160
/// #
163161
/// # }) }
164162
fn filter_map<B, F>(self, f: F) -> FilterMap<Self, F, Self::Item, B>

0 commit comments

Comments
 (0)