From b710fe273f5e069780779389da1cd3417b8d2cdd Mon Sep 17 00:00:00 2001 From: Ferdinand Schober Date: Mon, 9 Sep 2024 20:36:10 +0200 Subject: [PATCH] fix comment --- src/capture.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/capture.rs b/src/capture.rs index d23c616..26207de 100644 --- a/src/capture.rs +++ b/src/capture.rs @@ -129,7 +129,7 @@ thread_local! { } /// debounce a statement `$st`, i.e. the statement is executed only if the -/// time since the previous execution is at most `$dur`. +/// time since the previous execution is at least `$dur`. /// `$prev` is used to keep track of this timestamp macro_rules! debounce { ($prev:ident, $dur:expr, $st:stmt) => {