summaryrefslogtreecommitdiff
path: root/lib/bundler/similarity_detector.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bundler/similarity_detector.rb')
-rw-r--r--lib/bundler/similarity_detector.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/similarity_detector.rb b/lib/bundler/similarity_detector.rb
index b7f3ee7afa..f698f46a4c 100644
--- a/lib/bundler/similarity_detector.rb
+++ b/lib/bundler/similarity_detector.rb
@@ -51,7 +51,7 @@ module Bundler
dm[i][j] = [
dm[i - 1][j - 1] + (this[j - 1] == that[i - 1] ? 0 : sub),
dm[i][j - 1] + ins,
- dm[i - 1][j] + del
+ dm[i - 1][j] + del,
].min
end
end