From 4377dd50f0667a53006c34f06ce8f0f2694937d7 Mon Sep 17 00:00:00 2001 From: "Philip (flip) Kromer" Date: Sun, 14 Jun 2020 21:29:04 -0500 Subject: [PATCH] Update lib/rules/array-callback-return.js Co-authored-by: Kai Cataldo --- lib/rules/array-callback-return.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rules/array-callback-return.js b/lib/rules/array-callback-return.js index 295d5942b434..4557c2b18e9c 100644 --- a/lib/rules/array-callback-return.js +++ b/lib/rules/array-callback-return.js @@ -154,7 +154,7 @@ module.exports = { messages: { expectedAtEnd: "Array.prototype.{{arrayMethodName}}() expected a value to be returned at the end of {{name}}.", - expectedInside: "Method .{{arrayMethodName}}() expected a return value from {{name}}.", + expectedInside: "Array.prototype.{{arrayMethodName}}() expected a return value from {{name}}.", expectedReturnValue: "{{name}} expected a return value.", expectedNoReturnValue: "{{name}} did not expect a return value." }