diff options
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index f24cf8f..52dc625 100644 --- a/src/main.rs +++ b/src/main.rs @@ -19,7 +19,7 @@ impl Future for Delay { if Instant::now() >= self.when { Poll::Ready("done") } else { - // Ignore this line for now. + // Ignore this line for now. (this possibly busy waits?) cx.waker().wake_by_ref(); Poll::Pending } |
