Fix typos detected by crate-ci/typos

This commit is contained in:
Mikayla 2024-01-17 14:31:21 -08:00
parent df67917768
commit 57400e9687
No known key found for this signature in database
71 changed files with 133 additions and 133 deletions

View file

@ -445,7 +445,7 @@ mod tests {
KeyMatch::Some(vec![Box::new(Dollar)])
);
// handle Brazillian quote (quote key then space key)
// handle Brazilian quote (quote key then space key)
assert_eq!(
matcher.match_keystroke(
&Keystroke::parse("space->\"").unwrap(),
@ -454,7 +454,7 @@ mod tests {
KeyMatch::Some(vec![Box::new(Quote)])
);
// handle ctrl+` on a brazillian keyboard
// handle ctrl+` on a brazilian keyboard
assert_eq!(
matcher.match_keystroke(&Keystroke::parse("ctrl-->`").unwrap(), &[context_a.clone()]),
KeyMatch::Some(vec![Box::new(Backtick)])