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_terminal/src/config/debug.rs | |
parent | fa94fc3388829cd919d2b4c14d8f0ef842a7bcc2 (diff) | |
download | alacritty-period.tar.gz alacritty-period.zip |
Add period to comments to follow styleperiod
Diffstat (limited to 'alacritty_terminal/src/config/debug.rs')
-rw-r--r-- | alacritty_terminal/src/config/debug.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/alacritty_terminal/src/config/debug.rs b/alacritty_terminal/src/config/debug.rs index f5ebe974..9c9d4fde 100644 --- a/alacritty_terminal/src/config/debug.rs +++ b/alacritty_terminal/src/config/debug.rs @@ -3,7 +3,7 @@ use serde::{Deserialize, Deserializer}; use crate::config::{failure_default, LOG_TARGET_CONFIG}; -/// Debugging options +/// Debugging options. #[serde(default)] #[derive(Deserialize, Copy, Clone, Debug, PartialEq, Eq, PartialOrd, Ord)] pub struct Debug { @@ -13,15 +13,15 @@ pub struct Debug { #[serde(deserialize_with = "failure_default")] pub print_events: bool, - /// Keep the log file after quitting + /// Keep the log file after quitting. #[serde(deserialize_with = "failure_default")] pub persistent_logging: bool, - /// Should show render timer + /// Should show render timer. #[serde(deserialize_with = "failure_default")] pub render_timer: bool, - /// Record ref test + /// Record ref test. #[serde(skip)] pub ref_test: bool, } |