summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-11-21 07:37:49 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-11-21 07:37:49 (GMT)
commitb2b2382dc4a13cd5bd18767af9bfc6dbdece0113 (patch)
tree525fa39f2a613e03fea43ce77dfda29de4c96a4d
parentd325c4b233bdf36110c4c97e51b895972cbcf672 (diff)
downloadcpython-b2b2382dc4a13cd5bd18767af9bfc6dbdece0113.zip
cpython-b2b2382dc4a13cd5bd18767af9bfc6dbdece0113.tar.gz
cpython-b2b2382dc4a13cd5bd18767af9bfc6dbdece0113.tar.bz2
Fix capitalization.
-rw-r--r--Doc/library/decimal.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst
index d1e8bc7..7c448e6 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')))