Skip to content

Commit

Permalink
Fix sentence in try_buffered docs. (#2579)
Browse files Browse the repository at this point in the history
Updates the docs to use the same phrasing as `.buffered()` https://docs.rs/futures/latest/futures/stream/trait.StreamExt.html#method.buffered
  • Loading branch information
timleslie authored and taiki-e committed Aug 14, 2022
1 parent 5714dbe commit a0e898f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion futures-util/src/stream/try_stream/mod.rs
Expand Up @@ -918,7 +918,7 @@ pub trait TryStreamExt: TryStream {
/// that matches the stream's `Error` type.
///
/// This adaptor will buffer up to `n` futures and then return their
/// outputs in the order. If the underlying stream returns an error, it will
/// outputs in the same order as the underlying stream. If the underlying stream returns an error, it will
/// be immediately propagated.
///
/// The returned stream will be a stream of results, each containing either
Expand Down

0 comments on commit a0e898f

Please sign in to comment.