Skip to content

Commit ff112cd

Browse files
why520crazyjelbourn
authored andcommitted
chore: fix typo in coerceArray test name (#17028)
1 parent 00ea72e commit ff112cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cdk/coercion/array.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ describe('coerceArray', () => {
1717
expect(coerceArray(objectVal)).toEqual([objectVal]);
1818
});
1919

20-
it('should wrap a null vall in an array', () => {
20+
it('should wrap a null value in an array', () => {
2121
let nullVal = null;
2222
expect(coerceArray(nullVal)).toEqual([nullVal]);
2323
});

0 commit comments

Comments
 (0)