From 69d8dd97c7ae01f924d57fcb61303b1cc99cb22b Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sat, 19 May 2018 13:23:55 +0100 Subject: [PATCH] Fix typo a some whitespace --- rubocopfmt.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/rubocopfmt.el b/rubocopfmt.el index 1b877ed..ae43343 100644 --- a/rubocopfmt.el +++ b/rubocopfmt.el @@ -47,12 +47,12 @@ :group 'rubocopfmt) (defcustom rubocopfmt-disabled-cops - '("Lint/Debugger" ; Don't remove debugger calls. - "Lint/UnusedBlockArgument" ; Don't rename unused block arguments. - "Lint/UnusedMethodArgument" ; Don't rename unused method arguments. - "Style/EmptyMethod" ; Don't remove blank line in empty methods. + '("Lint/Debugger" ; Don't remove debugger calls. + "Lint/UnusedBlockArgument" ; Don't rename unused block arguments. + "Lint/UnusedMethodArgument" ; Don't rename unused method arguments. + "Style/EmptyMethod" ; Don't remove blank line in empty methods. ) - "A list of RuboCop Cops to disable during auto-correction. + "A list of RuboCop cops to disable during auto-correction. These cops are disabled because they cause confusion during interactive use within a text-editor." :type '(repeat string)