Spelling and grammar fixes (#23598)

This commit is contained in:
Ville Skyttä
2025-01-06 10:10:34 -01:00
committed by GitHub
parent 8be2ca5392
commit 3d1817a6b9
36 changed files with 62 additions and 62 deletions

View File

@@ -9,7 +9,7 @@ describe("attributeClassNames", () => {
assert.strictEqual(attributeClassNames(stateObj, attrs), "");
});
it("Matches no attrbutes", () => {
it("Matches no attributes", () => {
const stateObj: any = {
attributes: {
other_attr_1: 1,
@@ -19,7 +19,7 @@ describe("attributeClassNames", () => {
assert.strictEqual(attributeClassNames(stateObj, attrs), "");
});
it("Matches one attrbute", () => {
it("Matches one attribute", () => {
const stateObj: any = {
attributes: {
other_attr_1: 1,
@@ -30,7 +30,7 @@ describe("attributeClassNames", () => {
assert.strictEqual(attributeClassNames(stateObj, attrs), "has-mock_attr1");
});
it("Matches two attrbutes", () => {
it("Matches two attributes", () => {
const stateObj: any = {
attributes: {
other_attr_1: 1,