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:
parent
7399874479
commit
ef1b21004f
28 changed files with 39 additions and 39 deletions
|
@ -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();
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue