diff options
author | Josh Soref <2119212+jsoref@users.noreply.github.com> | 2024-05-24 13:32:11 -0400 |
---|---|---|
committer | Josh Rahm <rahm@google.com> | 2024-08-14 15:42:41 -0600 |
commit | e7cc5a5c8fdd1a70f90523a8654c253a0e1b00b2 (patch) | |
tree | 7edb2e326a60d488529e3fb14833d80dc0260151 /alacritty/src/config/ui_config.rs | |
parent | 55f037d96230d4aa3ee8e85be7b22a2bbbfff216 (diff) | |
download | r-alacritty-e7cc5a5c8fdd1a70f90523a8654c253a0e1b00b2.tar.gz r-alacritty-e7cc5a5c8fdd1a70f90523a8654c253a0e1b00b2.tar.bz2 r-alacritty-e7cc5a5c8fdd1a70f90523a8654c253a0e1b00b2.zip |
Fix spelling errors
Diffstat (limited to 'alacritty/src/config/ui_config.rs')
-rw-r--r-- | alacritty/src/config/ui_config.rs | 2 |
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", )); } |