diff --git a/src/lib.rs b/src/lib.rs index 0e58337..dd7ec69 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -39,6 +39,8 @@ use std::{ /// # Ok(()) /// # } /// ``` +/// +/// When dropped, the debouncer will close the mpsc channel associated with it. pub struct Debouncer { thread: Option>, // This is reference counted because the debouncer thread needs access to the controller, and