From b3942ecfa8406987f88999f3a2b92f8a824e4ac6 Mon Sep 17 00:00:00 2001 From: Yoshua Wuyts Date: Tue, 24 Dec 2019 14:39:55 +0100 Subject: [PATCH] remove tokio mention Signed-off-by: Yoshua Wuyts --- src/stream/interval.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stream/interval.rs b/src/stream/interval.rs index b0df714..f8a6ef6 100644 --- a/src/stream/interval.rs +++ b/src/stream/interval.rs @@ -85,7 +85,7 @@ impl Stream for Interval { /// While technically for large duration it's impossible to represent any /// duration as nanoseconds, the largest duration we can represent is about /// 427_000 years. Large enough for any interval we would use or calculate in -/// tokio. +/// async-std. fn duration_to_nanos(dur: Duration) -> Option { dur.as_secs() .checked_mul(1_000_000_000)