diff options
author | Raymond Hettinger <python@rcn.com> | 2011-01-25 05:53:27 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-01-25 05:53:27 (GMT) |
commit | f9b8a19d75d7577017e001a8cd61f5b95e2fa694 (patch) | |
tree | cdca731fc1b62d6e6533a85c534b88d73fa8e210 /Doc/whatsnew | |
parent | 2c63906283e38c1928f5e192325d4522d083c46a (diff) | |
download | cpython-f9b8a19d75d7577017e001a8cd61f5b95e2fa694.zip cpython-f9b8a19d75d7577017e001a8cd61f5b95e2fa694.tar.gz cpython-f9b8a19d75d7577017e001a8cd61f5b95e2fa694.tar.bz2 |
Typo.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.2.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index ae31d47..5bef1ac 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -992,7 +992,7 @@ of nearly equal quantities: >>> expm1(0.013671875) # more accurate way to compute e**x-1 for a small x 0.013765762467652909 -The :func:`~math.erf` function computes a probability integral of `Gaussian +The :func:`~math.erf` function computes a probability integral or `Gaussian error function <http://en.wikipedia.org/wiki/Error_function>`_: >>> erf(1.0/sqrt(2.0)) # portion of normal distribution within 1 standard deviation |