Skip to content

Commit

Permalink
short variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
JBlond committed Feb 13, 2019
1 parent ea72a0a commit c8ec74b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/jblond/Diff/SequenceMatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,13 @@ public function setOptions($options)
/**
* Set the first and second sequences to use with the sequence matcher.
*
* @param string|array $a A string or array containing the lines to compare against.
* @param string|array $b A string or array containing the lines to compare.
* @param string|array $partA A string or array containing the lines to compare against.
* @param string|array $partB A string or array containing the lines to compare.
*/
public function setSequences($a, $b)
public function setSequences($partA, $partB)
{
$this->setSeq1($a);
$this->setSeq2($b);
$this->setSeq1($partA);
$this->setSeq2($partB);
}

/**
Expand Down

0 comments on commit c8ec74b

Please sign in to comment.