summaryrefslogtreecommitdiff
path: root/lib/diff/lcs.rb
diff options
context:
space:
mode:
authorAustin Ziegler <austin@zieglers.ca>2021-12-23 11:25:24 -0500
committerAustin Ziegler <austin@zieglers.ca>2022-07-04 20:26:10 -0400
commit7d087cc973685105e2bc1c69dca60d719138dcbc (patch)
tree19f25a7ac7756dbf26b70c7df2a475d535a044f7 /lib/diff/lcs.rb
parentdca29cd3a74035df6d462f7d0def64e991bc84fc (diff)
downloaddiff-lcs-7d087cc973685105e2bc1c69dca60d719138dcbc.tar.gz
Clean up lint directives
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 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.
#