Completed
Push — master ( 60d04d...0a4dfa )
by Pol
03:26 queued 01:18
created
src/Combinatorics.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
    * @return int
76 76
    */
77 77
   protected function fact($n, $total = 1) {
78
-      return ($n < 2) ? $total : $this->fact($n-1, $total * $n);
78
+      return ($n < 2) ? $total : $this->fact($n - 1, $total * $n);
79 79
   }
80 80
 
81 81
 }
82 82
\ No newline at end of file
Please login to merge, or discard this patch.