2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-16 10:49:55 +00:00

remove extra newline

Co-Authored-By: Yoshua Wuyts <yoshuawuyts+github@gmail.com>
This commit is contained in:
Shady Khalifa 2019-08-30 20:30:48 +02:00 committed by GitHub
parent 243a48c14e
commit e8860454e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -153,7 +153,6 @@ pub trait Stream {
/// ///
/// let mut s = stream::empty::<u32>(); /// let mut s = stream::empty::<u32>();
/// assert!(s.all(|_| false).await); /// assert!(s.all(|_| false).await);
///
/// # /// #
/// # }) } /// # }) }
/// ``` /// ```