chore(src): fix minor typo (#6961)

This commit is contained in:
Sri Harsha 2021-03-09 13:31:09 +05:30 committed by GitHub
parent 669f04a7a6
commit 9e3fcb9f94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,7 +59,7 @@ function parseAriaSelector(selector: string): ariaQueryOption {
attribute = attribute.trim();
if (!knownAttributes.has(attribute))
throw new Error(
'Unkown aria attribute "${groups.attribute}" in selector'
'Unknown aria attribute "${groups.attribute}" in selector'
);
queryOptions[attribute] = normalize(value);
return '';