Skip to content

Commit 807dccc

Browse files
committed
oops broke my unit tests. always run them after any code change....
fixed and passing all tests now.
1 parent 4974032 commit 807dccc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RomanNumeral.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public function toInt( $romanNumeral )
8585

8686
foreach ($romanNumerals as $romanNumeral)
8787
{
88-
if( $this->_roman2decimal[$romanNumeral] < $this->roman2decimal[$last] )
88+
if( $this->_roman2decimal[$romanNumeral] < $this->_roman2decimal[$last] )
8989
{
9090
$calculated -= $this->_roman2decimal[$romanNumeral];
9191
}

0 commit comments

Comments
 (0)