File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ impl<T: Future> Unpin for FuturesOrdered<T> {}
100
100
101
101
/// Converts a list of futures into a `Stream` of results from the futures.
102
102
///
103
- /// This function will take an list of futures (e.g. a vector, an iterator,
103
+ /// This function will take a list of futures (e.g. a vector, an iterator,
104
104
/// etc), and return a stream. The stream will yield items as they become
105
105
/// available on the futures internally, in the order that their originating
106
106
/// futures were submitted to the queue. If the futures complete out of order,
Original file line number Diff line number Diff line change @@ -453,7 +453,7 @@ impl<Fut: Future> FromIterator<Fut> for FuturesUnordered<Fut> {
453
453
454
454
/// Converts a list of futures into a [`Stream`] of outputs from the futures.
455
455
///
456
- /// This function will take an list of futures (e.g. a [`Vec`], an [`Iterator`],
456
+ /// This function will take a list of futures (e.g. a [`Vec`], an [`Iterator`],
457
457
/// etc), and return a stream. The stream will yield items as they become
458
458
/// available on the futures internally, in the order that they become
459
459
/// available. This function is similar to
You can’t perform that action at this time.
0 commit comments