summaryrefslogtreecommitdiff
path: root/lib/diff/lcs.rb
diff options
context:
space:
mode:
authorAustin Ziegler <austin@zieglers.ca>2021-12-23 11:14:33 -0500
committerAustin Ziegler <austin@zieglers.ca>2022-07-04 20:26:10 -0400
commit63bb988f761da3fa061c9e3b5d13785477bf44c5 (patch)
treec605f55a7e5cf7f8da98f3c2677a1c47ee71ecf3 /lib/diff/lcs.rb
parent99af1369a86b38585f6c63e9d50ac7040932916a (diff)
downloaddiff-lcs-63bb988f761da3fa061c9e3b5d13785477bf44c5.tar.gz
standardrb --only Layout/SpaceInsideHashLiteralBraces --fix
Diffstat (limited to 'lib/diff/lcs.rb')
-rw-r--r--lib/diff/lcs.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/diff/lcs.rb b/lib/diff/lcs.rb
index 2214240..77b508f 100644
--- a/lib/diff/lcs.rb
+++ b/lib/diff/lcs.rb
@@ -578,8 +578,8 @@ class << Diff::LCS
# standard:disable Style/HashSyntax
PATCH_MAP = { # :nodoc:
- :patch => { "+" => "+", "-" => "-", "!" => "!", "=" => "=" }.freeze,
- :unpatch => { "+" => "-", "-" => "+", "!" => "!", "=" => "=" }.freeze
+ :patch => {"+" => "+", "-" => "-", "!" => "!", "=" => "="}.freeze,
+ :unpatch => {"+" => "-", "-" => "+", "!" => "!", "=" => "="}.freeze
}.freeze
# standard:enable Style/HashSyntax