cpython (merge 3.2 -> default): Fix markup and wording.

http://hg.python.org/cpython/rev/3e191db416a6 changeset: 69092:3e191db416a6 parent: 69090:69f58be4688a parent: 69091:9797bfe8240f user: Raymond Hettinger <python@rcn.com> date: Thu Mar 31 13:59:52 2011 -0700 summary: Fix markup and wording. files: Doc/library/math.rst | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Doc/library/math.rst b/Doc/library/math.rst --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -326,8 +326,8 @@ Return the complementary error function at *x*. The `complementary error function <http://en.wikipedia.org/wiki/Error_function>`_ is defined as - ``1.0 - erf(x)``. It is used for large values of *x* where a straight - substraction from *1* would cause a `loss of significance + ``1.0 - erf(x)``. It is used for large values of *x* where a subtraction + from one would cause a `loss of significance <http://en.wikipedia.org/wiki/Loss_of_significance>`_\. .. versionadded:: 3.2 @@ -335,7 +335,8 @@ .. function:: gamma(x) - Return the `Gamma function<http://en.wikipedia.org/wiki/Gamma_function>` at *x*. + Return the `Gamma function <http://en.wikipedia.org/wiki/Gamma_function>`_ at + *x*. .. versionadded:: 3.2 -- Repository URL: http://hg.python.org/cpython
participants (1)
-
raymond.hettinger