summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2013-10-19 19:10:01 (GMT)
committerNed Deily <nad@acm.org>2013-10-19 19:10:01 (GMT)
commit358667370346594c0383f1bfa09e0d650fa8832d (patch)
tree069c84869a2194eafc474f5ffcc50b84597eaa0a /Doc
parentf5e987bbe64156ebeae5eea730962c209fbb9d74 (diff)
downloadcpython-358667370346594c0383f1bfa09e0d650fa8832d.zip
cpython-358667370346594c0383f1bfa09e0d650fa8832d.tar.gz
cpython-358667370346594c0383f1bfa09e0d650fa8832d.tar.bz2
Issue #19304: Fix typos noted by Claudiu Popa.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/statistics.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/statistics.rst b/Doc/library/statistics.rst
index 4f5b759..f3eca8c 100644
--- a/Doc/library/statistics.rst
+++ b/Doc/library/statistics.rst
@@ -313,7 +313,7 @@ mean.
If the optional second argument *mu* is given, it should be the mean
of *data*. If it is missing or None (the default), the mean is
- automatically caclulated.
+ automatically calculated.
Use this function to calculate the variance from the entire population.
To estimate the variance from a sample, the :func:`variance` function is
@@ -397,7 +397,7 @@ a small variance indicates it is clustered closely around the mean.
If the optional second argument *xbar* is given, it should be the mean
of *data*. If it is missing or None (the default), the mean is
- automatically caclulated.
+ automatically calculated.
Use this function when your data is a sample from a population. To
calculate the variance from the entire population, see :func:`pvariance`.