From a38fad7e3f7860b4840a51a3871f53acec1706d4 Mon Sep 17 00:00:00 2001 From: PoziWorld <5961162+PoziWorld@users.noreply.github.com> Date: Tue, 12 Feb 2019 23:05:40 -0800 Subject: [PATCH] Fix grammar: Spacing improve -> Spacing improves MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Docs: Fix grammar: Spacing improve -> Spacing improves Changed “Spacing around commas improve readability of a list of items.” to “Spacing around commas improves readability of a list of items.” --- docs/rules/comma-spacing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/comma-spacing.md b/docs/rules/comma-spacing.md index a04d5ae5ec7..ffa2bfd117e 100644 --- a/docs/rules/comma-spacing.md +++ b/docs/rules/comma-spacing.md @@ -1,6 +1,6 @@ # Enforces spacing around commas (comma-spacing) -Spacing around commas improve readability of a list of items. Although most of the style guidelines for languages prescribe adding a space after a comma and not before it, it is subjective to the preferences of a project. +Spacing around commas improves readability of a list of items. Although most of the style guidelines for languages prescribe adding a space after a comma and not before it, it is subjective to the preferences of a project. ```js var foo = 1, bar = 2;