Fix various typos (#745)

Found via `codespell -q 3 -L complies,crate,doubleclick,ist,ser,vew`
This commit is contained in:
luzpaz
2022-08-05 20:57:52 -07:00
committed by GitHub
parent 83ff548596
commit 5f5c3efdee
4 changed files with 5 additions and 5 deletions
@@ -29,7 +29,7 @@ export function getLatinKey(e: KeyboardEvent): string | null {
const LAST_LATIN_UNICODE_CHAR = 0x024f;
if (key.length > 1 || key.charCodeAt(0) > LAST_LATIN_UNICODE_CHAR) return keyCodeToKey(e.code);
// Otherwise, ths is a printable Latin character
// Otherwise, this is a printable Latin character
return e.key.toLowerCase();
}