1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 15:24:58 +00:00

Everywhere: Fix typos

Mostly in comments, but sprintf() now prints "August" instead of
"Auguest" so that's something.
This commit is contained in:
Nico Weber 2020-10-02 09:59:28 -04:00 committed by Andreas Kling
parent 7399874479
commit ef1b21004f
28 changed files with 39 additions and 39 deletions

View file

@ -42,7 +42,7 @@ test("item added to array before exhaustion is accessible", () => {
expect(it.next()).toEqual({ value: undefined, done: true });
});
test("item added to array after exhaustion is inaccesible", () => {
test("item added to array after exhaustion is inaccessible", () => {
const a = [1, 2];
const it = a[Symbol.iterator]();
expect(it.next()).toEqual({ value: 1, done: false });