mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:47:35 +00:00
Everywhere: Fix a variety of typos
Spelling fixes found by `codespell`.
This commit is contained in:
parent
63c727a4a3
commit
d0a1775369
30 changed files with 38 additions and 38 deletions
|
@ -23,7 +23,7 @@ describe("normal behavior", () => {
|
|||
expect(new Intl.Locale("ar", { hourCycle: "h24" }).hourCycles).toEqual(["h24"]);
|
||||
|
||||
// Invalid hourCycles also take precedence when specified in the locale string. Unlike other
|
||||
// properties, Locale("en", { hourCycle: "ladybird" }) will explictly throw.
|
||||
// properties, Locale("en", { hourCycle: "ladybird" }) will explicitly throw.
|
||||
expect(new Intl.Locale("en-u-hc-ladybird").hourCycles).toEqual(["ladybird"]);
|
||||
});
|
||||
});
|
||||
|
|
|
@ -106,7 +106,7 @@ describe("tagged template literal functionality", () => {
|
|||
expect(raw[1]).toBe("\\nbar");
|
||||
});
|
||||
|
||||
test("invalid escapes give undefined cooked values but can be accesed in raw form", () => {
|
||||
test("invalid escapes give undefined cooked values but can be accessed in raw form", () => {
|
||||
let calls = 0;
|
||||
let lastValue = null;
|
||||
function noCookedButRaw(values) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue