Skip to content

Commit

Permalink
Fix typo in error message (#610)
Browse files Browse the repository at this point in the history
  • Loading branch information
bradleypriest committed Nov 28, 2022
1 parent fb456da commit d403f1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/action.ts
Expand Up @@ -55,7 +55,7 @@ export class Action {
}

if (!Object.prototype.hasOwnProperty.call(this.keyMappings, standardFilter)) {
error(`contains unkown key filter: ${this.keyFilter}`)
error(`contains unknown key filter: ${this.keyFilter}`)
}

return this.keyMappings[standardFilter].toLowerCase() !== event.key.toLowerCase()
Expand Down

0 comments on commit d403f1c

Please sign in to comment.