X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Flibs%2FRunningStat.php;h=8bd4656cde1267e39846a0549736bef315b0d5e7;hb=ad275af1b3efaba08dba9629c94b7e1688ff0b12;hp=f09d101826d8cdfec9911dbea500031aa3d5f711;hpb=a9d435fb43f71695b1b4619281c21072d56433d0;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/libs/RunningStat.php b/includes/libs/RunningStat.php index f09d101826..8bd4656cde 100644 --- a/includes/libs/RunningStat.php +++ b/includes/libs/RunningStat.php @@ -60,10 +60,10 @@ class RunningStat implements Countable { /** @var float The second central moment (or variance). **/ public $m2 = 0.0; - /** @var float The least value in the the set. **/ + /** @var float The least value in the set. **/ public $min = INF; - /** @var float The most value in the set. **/ + /** @var float The greatest value in the set. **/ public $max = NEGATIVE_INF; /** @@ -129,7 +129,7 @@ class RunningStat implements Countable { * Get the estimated standard deviation. * * The standard deviation of a statistical population is the square root of - * its variance. It shows shows how much variation from the mean exists. In + * its variance. It shows how much variation from the mean exists. In * addition to expressing the variability of a population, the standard * deviation is commonly used to measure confidence in statistical conclusions. *