Browse Source

Fix true / false sprintf error

master
Tovi Jaeschke-Rogers 2 years ago
parent
commit
9c7bcc1e1b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      romanToInt.php

+ 1
- 1
romanToInt.php View File

@ -134,7 +134,7 @@ class Solution {
} }
echo sprintf( echo sprintf(
'Succeeded: The value of \'%d\' matched the expected value of \'%s\'' . PHP_EOL,
'Succeeded: The value of \'%s\' matched the expected value of \'%s\'' . PHP_EOL,
$val ? 'True' : 'False', $val ? 'True' : 'False',
$str $str
); );


Loading…
Cancel
Save