Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(eslint-plugin): [type-annotation-spacing] typo in messages (#1354)
  • Loading branch information
joshuaobrien authored and bradzacher committed Dec 19, 2019
1 parent 013df9a commit 82e0dbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/eslint-plugin/src/rules/type-annotation-spacing.ts
Expand Up @@ -45,8 +45,8 @@ export default util.createRule<Options, MessageIds>({
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: [
{
Expand Down

0 comments on commit 82e0dbc

Please sign in to comment.