From 7dc961084ffed0125d574f303a22db3854be296a Mon Sep 17 00:00:00 2001 From: Trevin Hofmann Date: Mon, 15 Feb 2021 12:19:45 -1000 Subject: [PATCH] Docs: pluralize 'line' to 'lines' in max-lines-per-function description --- 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"