Skip to content

Commit e608270

Browse files
committed
Fix src/CalcGame.php, update text formatting
1 parent 55c0328 commit e608270

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CalcGame.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function startCalcGame(): void
2828
$expressionResult = $number1 * $number2;
2929
break;
3030
}
31-
$expression="{$number1}{$operation}{$number2}";
31+
$expression="{$number1} {$operation} {$number2}";
3232
$questions[$i] = $expression ;
3333
$answers[$i] = $expressionResult;
3434
}

0 commit comments

Comments
 (0)