From 266eda4a6b09bca4be072dc4cdea9c015816e978 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sat, 19 May 2018 15:46:57 +0100 Subject: [PATCH] Fix minor grammatical issue with readme --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 4257ad9..52b5968 100644 --- a/README.md +++ b/README.md @@ -55,11 +55,11 @@ Cops disabled by default: - `Lint/Debugger`: Removes `debugger` statements. Not helpful when you need to debug something. -- `Lint/UnusedBlockArgument`: Don't prefix unused block variable names with - `_`. This cop causes issues if you save after defining a block, but before you - use all arguments of the block. -- `Lint/UnusedMethodArgument`: Don't prefix unused method variable names with - `_`. This cop causes issues if you save after defining a method, but before - you use all arguments of the method. +- `Lint/UnusedBlockArgument`: Don't prefix unused block argument variable names + with `_`. This cop causes issues if you save after defining a block, but + before you use all arguments of the block. +- `Lint/UnusedMethodArgument`: Don't prefix unused method argument variable + names with `_`. This cop causes issues if you save after defining a method, + but before you use all arguments of the method. - `Style/EmptyMethod`: Don't remove remove empty line for empty methods. This cop is annoying if you save right after defining a new method.