@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | */ |
| 112 | 112 | public function max($floatPoint = 2) : float |
| 113 | 113 | { |
| 114 | - // Initialize max value with 1st index of $Sample. |
|
| 114 | + // Initialize max value with 1st index of $Sample. |
|
| 115 | 115 | $max = $this->Sample[0]; |
| 116 | 116 | |
| 117 | 117 | for ($i = 1; $i < $this->SampleCount; $i++) { |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | */ |
| 174 | 174 | public function median($floatPoint = 2) : float |
| 175 | 175 | { |
| 176 | - return $this->quartile(2, $floatPoint); |
|
| 176 | + return $this->quartile(2, $floatPoint); |
|
| 177 | 177 | } |
| 178 | 178 | |
| 179 | 179 | /** |