From dcfa895b512e3ed522b81b18baf3e33fd78a600c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Linus=20F=C3=A4rnstrand?= Date: Mon, 6 Jan 2020 19:04:21 +0100 Subject: chore: use just std instead of ::std in paths (#2049) --- tokio/src/sync/oneshot.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tokio/src/sync/oneshot.rs') diff --git a/tokio/src/sync/oneshot.rs b/tokio/src/sync/oneshot.rs index 67094645..7b8ab355 100644 --- a/tokio/src/sync/oneshot.rs +++ b/tokio/src/sync/oneshot.rs @@ -57,7 +57,7 @@ pub mod error { } } - impl ::std::error::Error for RecvError {} + impl std::error::Error for RecvError {} // ===== impl TryRecvError ===== @@ -70,7 +70,7 @@ pub mod error { } } - impl ::std::error::Error for TryRecvError {} + impl std::error::Error for TryRecvError {} } use self::error::*; -- cgit v1.2.3