fix typo in stats module (#10562) [ci skip]

This commit is contained in:
Vindaar
2019-02-05 15:37:55 +01:00
committed by Miran
parent 21b256dbc9
commit 7424ea4315

View File

@@ -224,7 +224,7 @@ proc standardDeviation*[T](x: openArray[T]): float =
result = rs.standardDeviation()
proc standardDeviationS*[T](x: openArray[T]): float =
## computes the sanple standardDeviation of `x`
## computes the sample standardDeviation of `x`
var rs: RunningStat
rs.push(x)
result = rs.standardDeviationS()