mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 09:54:57 +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
|
@ -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