summaryrefslogtreecommitdiffstats
path: root/tokio-io/src/io/flush.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio-io/src/io/flush.rs')
-rw-r--r--tokio-io/src/io/flush.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio-io/src/io/flush.rs b/tokio-io/src/io/flush.rs
index 6fef526b..6be90fcc 100644
--- a/tokio-io/src/io/flush.rs
+++ b/tokio-io/src/io/flush.rs
@@ -22,7 +22,7 @@ where
Flush { a }
}
-impl<'a, A> Unpin for Flush<'a, A> where A: Unpin + ?Sized {}
+impl<A> Unpin for Flush<'_, A> where A: Unpin + ?Sized {}
impl<A> Future for Flush<'_, A>
where