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