diff options
author | Austin Ziegler <austin@zieglers.ca> | 2021-12-23 11:25:24 -0500 |
---|---|---|
committer | Austin Ziegler <austin@zieglers.ca> | 2022-07-04 20:26:10 -0400 |
commit | 7d087cc973685105e2bc1c69dca60d719138dcbc (patch) | |
tree | 19f25a7ac7756dbf26b70c7df2a475d535a044f7 /lib/diff/lcs.rb | |
parent | dca29cd3a74035df6d462f7d0def64e991bc84fc (diff) | |
download | diff-lcs-7d087cc973685105e2bc1c69dca60d719138dcbc.tar.gz |
Clean up lint directives
Diffstat (limited to 'lib/diff/lcs.rb')
-rw-r--r-- | lib/diff/lcs.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/diff/lcs.rb b/lib/diff/lcs.rb index 77b508f..30385f8 100644 --- a/lib/diff/lcs.rb +++ b/lib/diff/lcs.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -module Diff; end unless defined? Diff # rubocop:disable Style/Documentation +module Diff; end unless defined? Diff # == How Diff Works (by Mark-Jason Dominus) # @@ -55,7 +55,7 @@ end require "diff/lcs/callbacks" require "diff/lcs/internals" -module Diff::LCS # rubocop:disable Style/Documentation +module Diff::LCS # Returns an Array containing the longest common subsequence(s) between # +self+ and +other+. See Diff::LCS#lcs. # |