From c5052cd3dcc9149f7ad74f2bf60312b6a3de9ad7 Mon Sep 17 00:00:00 2001 From: camille Date: Wed, 24 Jun 2020 09:54:30 +0900 Subject: [PATCH] Fix typo for rubocop cop namspace --- lib/diff/lcs/backports.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/diff/lcs/backports.rb b/lib/diff/lcs/backports.rb index 214a59a..642fc9c 100644 --- a/lib/diff/lcs/backports.rb +++ b/lib/diff/lcs/backports.rb @@ -3,7 +3,7 @@ unless 0.respond_to?(:positive?) class Fixnum # rubocop:disable Lint/UnifiedInteger, Style/Documentation def positive? - self > 0 # rubocop:disable Styel/NumericPredicate + self > 0 # rubocop:disable Style/NumericPredicate end end end