From c32482e4fd4ad09f3d5fd960dc1fb7c1b4e56f23 Mon Sep 17 00:00:00 2001 From: kmin-jeong <53456037+kmin-jeong@users.noreply.github.com> Date: Mon, 4 Apr 2022 18:52:20 +0900 Subject: [PATCH] docs: Typo in space-infix-ops docs (#15754) * fix: typo in space-infix-docs * fix: fix type error in space-infix-ops --- docs/rules/space-infix-ops.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/space-infix-ops.md b/docs/rules/space-infix-ops.md index 2b6bd8867eb..9453b7990c5 100644 --- a/docs/rules/space-infix-ops.md +++ b/docs/rules/space-infix-ops.md @@ -8,7 +8,7 @@ While formatting preferences are very personal, a number of style guides require var sum = 1 + 2; ``` -The proponents of these extra spaces believe it make the code easier to read and can more easily highlight potential errors, such as: +Proponents of this rule believe that it makes code easier to read and can more easily highlight potential errors, such as: ```js var sum = i+++2;