Fixed typos/CS #1

Merged
pborreli merged 1 commits from typos into master 2014-09-15 00:57:39 +02:00
2 changed files with 3 additions and 2 deletions

View File

@@ -89,7 +89,7 @@
</footer>
<!-- Scroll to Top Button (Only visible on small and extra-small screen sizes) -->
<div class="scroll-top page-scroll visible-xs visble-sm">
<div class="scroll-top page-scroll visible-xs visible-sm">
<a class="btn btn-primary" href="#page-top">
<i class="fa fa-chevron-up"></i>
</a>

View File

@@ -88,7 +88,8 @@ class StatisticsComputer implements StatisticsProvider
* @param float[] $array
* @return float
*/
private function median(array $array) {
private function median(array $array)
{
$count = count($array);
if ($count == 0) {