]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Nits.
authorRaymond Hettinger <python@rcn.com>
Tue, 25 Jan 2011 02:38:59 +0000 (02:38 +0000)
committerRaymond Hettinger <python@rcn.com>
Tue, 25 Jan 2011 02:38:59 +0000 (02:38 +0000)
Doc/whatsnew/3.2.rst

index 4cbb02845e0f9c0f16028092c005475917d393e5..ae31d47d5e678291281090abd5f011df189e9566 100644 (file)
@@ -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