From c53e25bff70a4ccd33214f28a490263395ac2951 Mon Sep 17 00:00:00 2001 From: Huy Vo Date: Wed, 11 May 2022 19:20:03 +0700 Subject: [PATCH] Wording --- debouncer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debouncer.go b/debouncer.go index e19354c..5c0e6e4 100644 --- a/debouncer.go +++ b/debouncer.go @@ -60,7 +60,7 @@ func (d *Debouncer) UpdateTimeDuration(newTimeDuration time.Duration) { d.timeDuration = newTimeDuration } -// Done returns a receive-only channel to notify the caller when the triggered func is invoked. +// Done returns a receive-only channel to notify the caller when the triggered func has been executed. func (d *Debouncer) Done() <-chan struct{} { return d.done }