aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/similarity_detector.rb
diff options
context:
space:
mode:
authorTakayuki Nakata <f.seasons017@gmail.com>2019-08-21 23:46:46 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-09-18 18:26:32 +0900
commitc27aaf1a8f6f4240dadeaa9b203cce640b56e3db (patch)
treea2bc6176362e7cd5bd5812102e40d7a5f9f61b0a /lib/bundler/similarity_detector.rb
parentb9996803f7278f3a6d30360f1b7220070a9208d3 (diff)
downloadruby-c27aaf1a8f6f4240dadeaa9b203cce640b56e3db.tar.gz
[bundler/bundler] Fix comments and messages to refer to https url
https://github.com/bundler/bundler/commit/a86b49f1b9
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 f698f46a4c..bd9971f884 100644
--- a/lib/bundler/similarity_detector.rb
+++ b/lib/bundler/similarity_detector.rb
@@ -28,7 +28,7 @@ module Bundler
protected
- # http://www.informit.com/articles/article.aspx?p=683059&seqNum=36
+ # https://www.informit.com/articles/article.aspx?p=683059&seqNum=36
def levenshtein_distance(this, that, ins = 2, del = 2, sub = 1)
# ins, del, sub are weighted costs
return nil if this.nil?