Skip to content

Commit

Permalink
fix(action-listener-middleware): typo
Browse files Browse the repository at this point in the history
  • Loading branch information
FaberVitale committed Nov 13, 2021
1 parent f040ad6 commit e26b5d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/action-listener-middleware/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function assertFunction(
expected: string
): asserts func is (...args: unknown[]) => unknown {
if (typeof func !== 'function') {
throw new TypeError(`${expected} in not a function`)
throw new TypeError(`${expected} is not a function`)
}
}

Expand Down

0 comments on commit e26b5d6

Please sign in to comment.