2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-02-06 04:35:32 +00:00

Slight miss-merge

This commit is contained in:
Felipe Sere 2019-11-10 17:56:31 +01:00
parent a257b7018c
commit 243cdd7ff1
2 changed files with 3 additions and 2 deletions

View file

@ -303,7 +303,6 @@
pub use empty::{empty, Empty};
pub use from_fn::{from_fn, FromFn};
pub use from_iter::{from_iter, FromIter};
pub use successor::{successor, Successor};
pub use once::{once, Once};
pub use repeat::{repeat, Repeat};
pub use repeat_with::{repeat_with, RepeatWith};

View file

@ -5,9 +5,11 @@ use crate::future::Future;
use crate::stream::Stream;
use crate::task::{Context, Poll, ready};
use pin_project_lite::pin_project;
pin_project_lite::pin_project! {
pin_project! {
/// A stream that yields elements by calling an async closure with the previous value as an
/// argument
///