mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:47:45 +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:
parent
7399874479
commit
ef1b21004f
28 changed files with 39 additions and 39 deletions
|
@ -33,7 +33,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.values();
|
||||
expect(it.next()).toEqual({ value: 1, done: false });
|
||||
|
|
|
@ -3,7 +3,7 @@ describe("correct behavior", () => {
|
|||
expect(typeof 1n).toBe("bigint");
|
||||
});
|
||||
|
||||
test("bigint string coersion", () => {
|
||||
test("bigint string coercion", () => {
|
||||
expect("" + 123n).toBe("123");
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue