From: Mark Dickinson Date: Sun, 21 Nov 2010 07:37:49 +0000 (+0000) Subject: Fix capitalization. X-Git-Tag: v3.2b1~265 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b2b2382dc4a13cd5bd18767af9bfc6dbdece0113;p=thirdparty%2FPython%2Fcpython.git Fix capitalization. --- diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index d1e8bc750eaa..7c448e6ceb55 100644 --- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst @@ -1717,7 +1717,7 @@ to work with the :class:`Decimal` class:: def cos(x): """Return the cosine of x as measured in radians. - The taylor series approximation works best for a small value of x. + The Taylor series approximation works best for a small value of x. For larger values, first compute x = x % (2 * pi). >>> print(cos(Decimal('0.5'))) @@ -1743,7 +1743,7 @@ to work with the :class:`Decimal` class:: def sin(x): """Return the sine of x as measured in radians. - The taylor series approximation works best for a small value of x. + The Taylor series approximation works best for a small value of x. For larger values, first compute x = x % (2 * pi). >>> print(sin(Decimal('0.5')))