Skip to content

Commit

Permalink
Wording
Browse files Browse the repository at this point in the history
  • Loading branch information
huyvohcmc committed May 11, 2022
1 parent 1b6a41e commit c53e25b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion debouncer.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit c53e25b

Please sign in to comment.