From b8aea9988b6451b6a05af4f3ede8d6ed5c1d9926 Mon Sep 17 00:00:00 2001 From: Trevin Hofmann Date: Thu, 18 Feb 2021 01:34:35 -1000 Subject: [PATCH] Fix: pluralize 'line' to 'lines' in max-lines-per-function description (#14115) --- lib/rules/max-lines-per-function.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rules/max-lines-per-function.js b/lib/rules/max-lines-per-function.js index aa423a60a1f..de70cecb47a 100644 --- a/lib/rules/max-lines-per-function.js +++ b/lib/rules/max-lines-per-function.js @@ -71,7 +71,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce a maximum number of line of code in a function", + description: "enforce a maximum number of lines of code in a function", category: "Stylistic Issues", recommended: false, url: "https://eslint.org/docs/rules/max-lines-per-function"