diff --git a/notify-debouncer-full/src/cache.rs b/notify-debouncer-full/src/cache.rs index cb6a6780..a5a5d44e 100644 --- a/notify-debouncer-full/src/cache.rs +++ b/notify-debouncer-full/src/cache.rs @@ -30,7 +30,7 @@ pub trait FileIdCache { /// /// This will be called if the notification back-end has dropped events. /// The root paths are passed as argument, so the implementer doesn't have to store them. - /// + /// /// The default implementation calls `add_path` for each root path. fn rescan(&mut self, root_paths: &[(PathBuf, RecursiveMode)]) { for (path, recursive_mode) in root_paths { diff --git a/notify/src/config.rs b/notify/src/config.rs index 62cccf65..cc65c65f 100644 --- a/notify/src/config.rs +++ b/notify/src/config.rs @@ -100,7 +100,7 @@ impl Config { /// For the [INotifyWatcher](crate::INotifyWatcher), [KqueueWatcher](crate::KqueueWatcher), /// and [PollWatcher](crate::PollWatcher). /// - /// Determine if sybolic links should be followed when recursively watching a directory. + /// Determine if symbolic links should be followed when recursively watching a directory. /// /// This can't be changed during runtime. On by default. pub fn with_follow_symlinks(mut self, follow_symlinks: bool) -> Self {