Skip to content

Commit fee3b6f

Browse files
authored
Merge pull request #645 from async-rs/remove-tokio-mention
update stream::Interval internal comments left over from migration
2 parents 86d3d74 + b3942ec commit fee3b6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stream/interval.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ impl Stream for Interval {
8585
/// While technically for large duration it's impossible to represent any
8686
/// duration as nanoseconds, the largest duration we can represent is about
8787
/// 427_000 years. Large enough for any interval we would use or calculate in
88-
/// tokio.
88+
/// async-std.
8989
fn duration_to_nanos(dur: Duration) -> Option<u64> {
9090
dur.as_secs()
9191
.checked_mul(1_000_000_000)

0 commit comments

Comments
 (0)