diff options
author | Vindaar <basti90@gmail.com> | 2019-02-05 15:37:55 +0100 |
---|---|---|
committer | Miran <narimiran@disroot.org> | 2019-02-05 15:37:55 +0100 |
commit | 7424ea4315469a6e4cf6a391495a7f95655886a0 (patch) | |
tree | cca9b384f1f49f9fb519071ae771f55028485348 | |
parent | 21b256dbc965d91e7b092d3963e04fd91194e983 (diff) | |
download | Nim-7424ea4315469a6e4cf6a391495a7f95655886a0.tar.gz |
fix typo in stats module (#10562) [ci skip]
-rw-r--r-- | lib/pure/stats.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/stats.nim b/lib/pure/stats.nim index ce32108c2..b5c8d3784 100644 --- a/lib/pure/stats.nim +++ b/lib/pure/stats.nim @@ -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() |