From 48637c062b28eb6ad071167736c4b20b1cee4a0b Mon Sep 17 00:00:00 2001 From: Flo Edelmann Date: Mon, 19 Jun 2023 09:22:29 +0200 Subject: [PATCH] Fix typo in `vue/require-typed-ref` message --- lib/rules/require-typed-ref.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rules/require-typed-ref.js b/lib/rules/require-typed-ref.js index f8fce39de..678c02947 100644 --- a/lib/rules/require-typed-ref.js +++ b/lib/rules/require-typed-ref.js @@ -33,7 +33,7 @@ module.exports = { fixable: null, messages: { noType: - 'Specify type parameter for `{{name}}` function, otherwise created variable will not by typechecked.' + 'Specify type parameter for `{{name}}` function, otherwise created variable will not be typechecked.' }, schema: [] },