summaryrefslogtreecommitdiffstats
path: root/tokio/src/sync/oneshot.rs
diff options
context:
space:
mode:
authorLinus Färnstrand <faern@faern.net>2020-01-06 19:04:21 +0100
committerCarl Lerche <me@carllerche.com>2020-01-06 10:04:21 -0800
commitdcfa895b512e3ed522b81b18baf3e33fd78a600c (patch)
tree67929b9cc83528a866f4d2afe8120a7a6fb2998a /tokio/src/sync/oneshot.rs
parentf0006006ed9938115011c42f26cff16842eb534f (diff)
chore: use just std instead of ::std in paths (#2049)
Diffstat (limited to 'tokio/src/sync/oneshot.rs')
-rw-r--r--tokio/src/sync/oneshot.rs4
1 files changed, 2 insertions, 2 deletions
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::*;