summaryrefslogtreecommitdiffstats
path: root/tokio/src/time/driver/handle.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/time/driver/handle.rs')
-rw-r--r--tokio/src/time/driver/handle.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tokio/src/time/driver/handle.rs b/tokio/src/time/driver/handle.rs
index 93d8cd7b..54b8a8bd 100644
--- a/tokio/src/time/driver/handle.rs
+++ b/tokio/src/time/driver/handle.rs
@@ -20,7 +20,7 @@ impl Handle {
}
}
-cfg_rt_core! {
+cfg_rt! {
impl Handle {
/// Tries to get a handle to the current timer.
///
@@ -45,7 +45,7 @@ cfg_rt_core! {
}
}
-cfg_not_rt_core! {
+cfg_not_rt! {
impl Handle {
/// Tries to get a handle to the current timer.
///
@@ -65,7 +65,7 @@ cfg_not_rt_core! {
/// panicking.
pub(crate) fn current() -> Self {
panic!("there is no timer running, must be called from the context of Tokio runtime or \
- `rt-core` is not enabled")
+ `rt` is not enabled")
}
}
}