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