aboutsummaryrefslogtreecommitdiff
path: root/alacritty_terminal/src/config/colors.rs
diff options
context:
space:
mode:
Diffstat (limited to 'alacritty_terminal/src/config/colors.rs')
-rw-r--r--alacritty_terminal/src/config/colors.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/alacritty_terminal/src/config/colors.rs b/alacritty_terminal/src/config/colors.rs
index 5c057619..bae00ee1 100644
--- a/alacritty_terminal/src/config/colors.rs
+++ b/alacritty_terminal/src/config/colors.rs
@@ -59,7 +59,7 @@ where
index
);
- // Return value out of range to ignore this color
+ // Return value out of range to ignore this color.
Ok(0)
} else {
Ok(index)
@@ -68,7 +68,7 @@ where
Err(err) => {
error!(target: LOG_TARGET_CONFIG, "Problem with config: {}; ignoring setting", err);
- // Return value out of range to ignore this color
+ // Return value out of range to ignore this color.
Ok(0)
},
}
@@ -124,7 +124,7 @@ fn default_foreground() -> Rgb {
Rgb { r: 0xea, g: 0xea, b: 0xea }
}
-/// The 8-colors sections of config
+/// The 8-colors sections of config.
#[derive(Deserialize, Clone, Debug, PartialEq, Eq)]
pub struct AnsiColors {
#[serde(deserialize_with = "failure_default")]