1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:07:44 +00:00

Everywhere: Fix a variety of typos

Spelling fixes found by `codespell`.
This commit is contained in:
Brian Gianforcaro 2022-09-09 14:53:53 -07:00
parent 63c727a4a3
commit d0a1775369
30 changed files with 38 additions and 38 deletions

View file

@ -8,7 +8,7 @@
Promise.reject(new Error('Success!'));
window.timer = setTimeout(() => {
const element = document.createElement('p');
element.innerText = 'Did not receieve unhandledrejection event in 100ms.';
element.innerText = 'Did not receive unhandledrejection event in 100ms.';
element.style.color = 'red';
document.body.appendChild(element);
}, 100)