aboutsummaryrefslogtreecommitdiff
path: root/alacritty/src/config/ui_config.rs
diff options
context:
space:
mode:
authorJosh Soref <2119212+jsoref@users.noreply.github.com>2024-05-24 13:32:11 -0400
committerGitHub <noreply@github.com>2024-05-24 17:32:11 +0000
commitcacdb5bb3b72bad2c729227537979d95af75978f (patch)
tree886c6e8a4beadfa443a69d9e5acf18af83a53d8c /alacritty/src/config/ui_config.rs
parenta89d4f50dc6ac0256d6d52371c3711107de8c7d2 (diff)
downloadr-alacritty-cacdb5bb3b72bad2c729227537979d95af75978f.tar.gz
r-alacritty-cacdb5bb3b72bad2c729227537979d95af75978f.tar.bz2
r-alacritty-cacdb5bb3b72bad2c729227537979d95af75978f.zip
Fix spelling errors
Diffstat (limited to 'alacritty/src/config/ui_config.rs')
-rw-r--r--alacritty/src/config/ui_config.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/config/ui_config.rs b/alacritty/src/config/ui_config.rs
index 580a3dad..a40dcaf8 100644
--- a/alacritty/src/config/ui_config.rs
+++ b/alacritty/src/config/ui_config.rs
@@ -499,7 +499,7 @@ impl<'de> Deserialize<'de> for HintContent {
// Require at least one of hyperlinks or regex trigger hint matches.
if content.regex.is_none() && !content.hyperlinks {
return Err(M::Error::custom(
- "Config error: At least on of the hint's regex or hint's hyperlinks must \
+ "Config error: At least one of the hint's regex or hint's hyperlinks must \
be set",
));
}