From 2027bb11689b76c297f93ba8a918b35fe68e5b9d Mon Sep 17 00:00:00 2001 From: Christopher Rybicki Date: Sun, 2 Aug 2020 16:19:29 -0400 Subject: [PATCH] fix(eslint-plugin): [no-unsafe-assignment] fix typo in message (#2347) --- packages/eslint-plugin/src/rules/no-unsafe-assignment.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/eslint-plugin/src/rules/no-unsafe-assignment.ts b/packages/eslint-plugin/src/rules/no-unsafe-assignment.ts index e581862b0ed..21e646483bc 100644 --- a/packages/eslint-plugin/src/rules/no-unsafe-assignment.ts +++ b/packages/eslint-plugin/src/rules/no-unsafe-assignment.ts @@ -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: [],