diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2020-05-03 06:52:57 +0300 |
---|---|---|
committer | Kirill Chibisov <contact@kchibisov.com> | 2020-05-04 03:07:23 +0300 |
commit | d61228056171f89b866c61871f837a50c3cd48ea (patch) | |
tree | 69ef78283c53ced053856c1ad40db5f535df9d03 /alacritty/src/config/monitor.rs | |
parent | fa94fc3388829cd919d2b4c14d8f0ef842a7bcc2 (diff) | |
download | alacritty-d61228056171f89b866c61871f837a50c3cd48ea.tar.gz alacritty-d61228056171f89b866c61871f837a50c3cd48ea.zip |
Add period to comments to follow styleperiod
Diffstat (limited to 'alacritty/src/config/monitor.rs')
-rw-r--r-- | alacritty/src/config/monitor.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alacritty/src/config/monitor.rs b/alacritty/src/config/monitor.rs index 8dc5379a..d91b2e4b 100644 --- a/alacritty/src/config/monitor.rs +++ b/alacritty/src/config/monitor.rs @@ -28,11 +28,11 @@ impl Monitor { watcher(tx, Duration::from_millis(10)).expect("Unable to spawn file watcher"); let config_path = ::std::fs::canonicalize(path).expect("canonicalize config path"); - // Get directory of config + // Get directory of config. let mut parent = config_path.clone(); parent.pop(); - // Watch directory + // Watch directory. watcher .watch(&parent, RecursiveMode::NonRecursive) .expect("watch alacritty.yml dir"); |