diff options
author | Raymond Hettinger <python@rcn.com> | 2011-01-25 02:38:59 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-01-25 02:38:59 (GMT) |
commit | 2c63906283e38c1928f5e192325d4522d083c46a (patch) | |
tree | 1c096f23a335a1905592272ddbc8e7c0fae29307 | |
parent | a4cfb4292affa1e6da620c2dffcdfa18d7c7fc18 (diff) | |
download | cpython-2c63906283e38c1928f5e192325d4522d083c46a.zip cpython-2c63906283e38c1928f5e192325d4522d083c46a.tar.gz cpython-2c63906283e38c1928f5e192325d4522d083c46a.tar.bz2 |
Nits.
-rw-r--r-- | Doc/whatsnew/3.2.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 4cbb028..ae31d47 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -998,11 +998,11 @@ error function <http://en.wikipedia.org/wiki/Error_function>`_: >>> erf(1.0/sqrt(2.0)) # portion of normal distribution within 1 standard deviation 0.682689492137086 -:func:`~math.gamma` is a continuous extension of the factorial function. See -http://en.wikipedia.org/wiki/Gamma_function for details. Because the function -is related to factorials, it grows large even for small values of *x*, so there -is also a :func:`~math.lgamma` for computing the natural logarithm of the gamma -function: +The :func:`~math.gamma` function is a continuous extension of the factorial +function. See http://en.wikipedia.org/wiki/Gamma_function for details. Because +the function is related to factorials, it grows large even for small values of +*x*, so there is also a :func:`~math.lgamma` function for computing the natural +logarithm of the gamma function: >>> gamma(7.0) # six factorial 720.0 |