[Python-checkins] cpython: Issue #19304: Fix typos noted by Claudiu Popa.

ned.deily python-checkins at python.org
Sat Oct 19 21:10:32 CEST 2013


http://hg.python.org/cpython/rev/900460f0fb2a
changeset:   86490:900460f0fb2a
user:        Ned Deily <nad at acm.org>
date:        Sat Oct 19 12:10:01 2013 -0700
summary:
  Issue #19304: Fix typos noted by Claudiu Popa.

files:
  Doc/library/statistics.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/library/statistics.rst b/Doc/library/statistics.rst
--- a/Doc/library/statistics.rst
+++ b/Doc/library/statistics.rst
@@ -313,7 +313,7 @@
 
    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 @@
 
    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`.

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list