php-diff icon indicating copy to clipboard operation
php-diff copied to clipboard

tupleSort() & realquickRatio() bug? report

Open ghost opened this issue 11 years ago • 0 comments

file: SequenceMatcher.php

line num: 634 $bLength = count ($b); => $bLength = count ($this->b);

line num: 732 if(count($a) == $count($b)) { =>
if(count($a) == count($b)) {

ghost avatar Dec 23 '13 09:12 ghost