mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +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:
committed by
Andreas Kling
parent
7399874479
commit
ef1b21004f
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user