]> granicus.if.org Git - python/commitdiff
Fix capitalization.
authorMark Dickinson <dickinsm@gmail.com>
Sun, 21 Nov 2010 07:37:49 +0000 (07:37 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Sun, 21 Nov 2010 07:37:49 +0000 (07:37 +0000)
Doc/library/decimal.rst

index d1e8bc750eaa3ab8837abdc2dbe873ad204a921c..7c448e6ceb559bb0e6855437b8087957ec17e229 100644 (file)
@@ -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')))