summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-02-14 12:05:42 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-02-14 12:05:42 (GMT)
commit50361d4d9b3e8729aa535c3dfde3d9d2ad899d47 (patch)
treeb7541071c6874e291fa4ba76b882931fc8344ac4 /Doc
parentd68bf02810b76db382004acb2f60a0515381feec (diff)
downloadcpython-50361d4d9b3e8729aa535c3dfde3d9d2ad899d47.zip
cpython-50361d4d9b3e8729aa535c3dfde3d9d2ad899d47.tar.gz
cpython-50361d4d9b3e8729aa535c3dfde3d9d2ad899d47.tar.bz2
Fix markup.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/decimal.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst
index 0a8262d..75db486 100644
--- a/Doc/library/decimal.rst
+++ b/Doc/library/decimal.rst
@@ -1534,7 +1534,7 @@ Decimal FAQ
Q. It is cumbersome to type ``decimal.Decimal('1234.5')``. Is there a way to
minimize typing when using the interactive interpreter?
-\A. Some users abbreviate the constructor to just a single letter::
+A. Some users abbreviate the constructor to just a single letter::
>>> D = decimal.Decimal
>>> D('1.23') + D('3.45')