diff --git a/test/test-utils/matchers/to-have-positional-tag.ts b/test/test-utils/matchers/to-have-positional-tag.ts index a50a26f5c6d..5ec9c71f3a1 100644 --- a/test/test-utils/matchers/to-have-positional-tag.ts +++ b/test/test-utils/matchers/to-have-positional-tag.ts @@ -56,7 +56,7 @@ export function toHavePositionalTag
( const tagType = typeof expectedTag === "string" ? expectedTag : expectedTag.tagType; const matchingTags = allTags.filter(t => t.tagType === tagType); - // If checking exclusively tag type, check solely the number of ,atching tags on field + // If checking exclusively tag type, check solely the number of matching tags on field if (typeof expectedTag === "string") { const pass = matchingTags.length === count; const expectedStr = getPosTagStr(expectedTag);