@@ -97,8 +97,7 @@ |
||
| 97 | 97 | public static function toNumeral(int $n): Closure |
| 98 | 98 | { |
| 99 | 99 | return 0 === $n ? |
| 100 | - Numeral::zero() : |
|
| 101 | - Numeral::succ()(Numeral::toNumeral($n - 1)); |
|
| 100 | + Numeral::zero() : Numeral::succ()(Numeral::toNumeral($n - 1)); |
|
| 102 | 101 | } |
| 103 | 102 | |
| 104 | 103 | public static function two(): Closure |