X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Flibs%2FRunningStat.php;h=8bd4656cde1267e39846a0549736bef315b0d5e7;hb=ad275af1b3efaba08dba9629c94b7e1688ff0b12;hp=dda5254e3ba234399d4c4200c858f0bdf243b7f3;hpb=7af7ba2f05dd802d6ff8615364dd874862ebc4be;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/libs/RunningStat.php b/includes/libs/RunningStat.php index dda5254e3b..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; /** @@ -126,10 +126,10 @@ class RunningStat implements Countable { } /** - * Get the estimated stanard deviation. + * 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. *