Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(eslint-plugin): [no-unsafe-assignment] fix typo in message (#2347)
  • Loading branch information
Chriscbr authored and bradzacher committed Aug 2, 2020
1 parent 817067b commit 2027bb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eslint-plugin/src/rules/no-unsafe-assignment.ts
Expand Up @@ -30,7 +30,7 @@ export default util.createRule({
unsafeArrayPatternFromTuple:
'Unsafe array destructuring of a tuple element with an any value.',
unsafeAssignment:
'Unsafe asignment of type {{sender}} to a variable of type {{receiver}}.',
'Unsafe assignment of type {{sender}} to a variable of type {{receiver}}.',
unsafeArraySpread: 'Unsafe spread of an any value in an array.',
},
schema: [],
Expand Down

0 comments on commit 2027bb1

Please sign in to comment.