From 82e0dbcbeda9bad3f3b37a7522aff349e5e81ccc Mon Sep 17 00:00:00 2001 From: Joshua O'Brien Date: Thu, 19 Dec 2019 17:26:19 +1100 Subject: [PATCH] fix(eslint-plugin): [type-annotation-spacing] typo in messages (#1354) --- packages/eslint-plugin/src/rules/type-annotation-spacing.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/eslint-plugin/src/rules/type-annotation-spacing.ts b/packages/eslint-plugin/src/rules/type-annotation-spacing.ts index 7c9162a0d05..48ec12cfff8 100644 --- a/packages/eslint-plugin/src/rules/type-annotation-spacing.ts +++ b/packages/eslint-plugin/src/rules/type-annotation-spacing.ts @@ -45,8 +45,8 @@ export default util.createRule({ messages: { expectedSpaceAfter: "Expected a space after the '{{type}}'.", expectedSpaceBefore: "Expected a space before the '{{type}}'.", - unexpectedSpaceAfter: "Unexpected a space after the '{{type}}'.", - unexpectedSpaceBefore: "Unexpected a space before the '{{type}}'.", + unexpectedSpaceAfter: "Unexpected space after the '{{type}}'.", + unexpectedSpaceBefore: "Unexpected space before the '{{type}}'.", }, schema: [ {