1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 23:27:42 +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

@ -110,7 +110,7 @@ test("arrow functions in objects", () => {
expect(foobar.x.z()).toBe(foobar.x);
});
test("strict mode propogation", () => {
test("strict mode propagation", () => {
(() => {
"use strict";
expect(isStrictMode()).toBeTrue();

View file

@ -106,7 +106,7 @@ test("parameter with a function default value", () => {
expect(arrowFunc(() => 10)).toBe(10);
});
test("parameter with an arrow function default vlaue", () => {
test("parameter with an arrow function default value", () => {
function func(a = () => 5) {
return a();
}

View file

@ -30,7 +30,7 @@ test("use strict with double quotes after statement does not yield strict mode c
expect(isStrictMode()).toBeFalse();
});
test("strict mode propogates down the scope chain", () => {
test("strict mode propagates down the scope chain", () => {
"use strict";
expect(isStrictMode()).toBeTrue();
(function() {
@ -38,7 +38,7 @@ test("strict mode propogates down the scope chain", () => {
})();
});
test("strict mode does not propogate up the scope chain", () => {
test("strict mode does not propagate up the scope chain", () => {
expect(isStrictMode()).toBeFalse();
(function() {
"use strict";