aboutsummaryrefslogtreecommitdiff
path: root/src/stream/mod.rs
diff options
context:
space:
mode:
authorJoel Galenson <jgalenson@google.com>2021-04-02 17:37:05 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-04-02 17:37:05 +0000
commitbd42804c0d82879869969a7103f63c4efccdbffe (patch)
tree931c1432113b74ac060d81ede8b4cbf7d3abfd76 /src/stream/mod.rs
parent2d504b322047484e1755858ff567f71f0e26490c (diff)
parentac32bfb85d74a0c3d5733f72a0571b4d77b23597 (diff)
downloadfutures-util-bd42804c0d82879869969a7103f63c4efccdbffe.tar.gz
Upgrade rust/crates/futures-util to 0.3.13 am: 1fdff8fd4c am: cf1d92ef03 am: ac32bfb85d
Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/futures-util/+/1662922 Change-Id: I2ae408bfa218468323fecc75cab01c06ba6c8b8b
Diffstat (limited to 'src/stream/mod.rs')
-rw-r--r--src/stream/mod.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stream/mod.rs b/src/stream/mod.rs
index a5624ba..f3b2baa 100644
--- a/src/stream/mod.rs
+++ b/src/stream/mod.rs
@@ -109,11 +109,11 @@ cfg_target_has_atomic! {
pub use self::select_all::{select_all, SelectAll};
}
-// Just a helper function to ensure the futures we're returning all have the
+// Just a helper function to ensure the streams we're returning all have the
// right implementations.
pub(crate) fn assert_stream<T, S>(stream: S) -> S
- where
- S: Stream<Item = T>,
+where
+ S: Stream<Item = T>,
{
stream
}