diff options
author | Pavel Roskin <1317472+proski@users.noreply.github.com> | 2023-10-25 16:20:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-25 23:20:58 +0000 |
commit | 75eef3be9680dbe3300186b06e19eac7f9dfab4b (patch) | |
tree | e59127474f8bdaae5be26dc53d25c3c9ed86d379 /alacritty/src/display/content.rs | |
parent | 500b696ca8ed61c42f5954b10f1294e875d792ae (diff) | |
download | r-alacritty-75eef3be9680dbe3300186b06e19eac7f9dfab4b.tar.gz r-alacritty-75eef3be9680dbe3300186b06e19eac7f9dfab4b.tar.bz2 r-alacritty-75eef3be9680dbe3300186b06e19eac7f9dfab4b.zip |
Fix typos
Diffstat (limited to 'alacritty/src/display/content.rs')
-rw-r--r-- | alacritty/src/display/content.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/display/content.rs b/alacritty/src/display/content.rs index 0849b30a..ba716154 100644 --- a/alacritty/src/display/content.rs +++ b/alacritty/src/display/content.rs @@ -510,7 +510,7 @@ impl<'a> HintMatches<'a> { Self { matches: matches.into(), index: 0 } } - /// Create from regex matches on term visable part. + /// Create from regex matches on term visible part. fn visible_regex_matches<T>(term: &Term<T>, dfas: &mut RegexSearch) -> Self { let matches = hint::visible_regex_match_iter(term, dfas).collect::<Vec<_>>(); Self::new(matches) |