File tree 1 file changed +4
-5
lines changed
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -19,11 +19,10 @@ use crate::{ScheduledTimer, TimerHandle};
19
19
/// A future representing the notification that an elapsed duration has
20
20
/// occurred.
21
21
///
22
- /// This is created through the `Delay::new` or `Delay::new_at` methods
23
- /// indicating when the future should fire at. Note that these futures are not
24
- /// intended for high resolution timers, but rather they will likely fire some
25
- /// granularity after the exact instant that they're otherwise indicated to
26
- /// fire at.
22
+ /// This is created through the `Delay::new` method indicating when the future should fire.
23
+ /// Note that these futures are not intended for high resolution timers, but rather they will
24
+ /// likely fire some granularity after the exact instant that they're otherwise indicated to fire
25
+ /// at.
27
26
pub struct Delay {
28
27
state : Option < Arc < Node < ScheduledTimer > > > ,
29
28
when : Instant ,
You can’t perform that action at this time.
0 commit comments