summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-02-14 19:02:39 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-02-14 19:02:39 (GMT)
commit5111c522e7ae21ad3342f14be4a5ff46230b46b0 (patch)
treeb968692bd5768739a53eea553df4057ac99adbc9 /Doc
parent0cd717007dad8dc29f0dc27b369f8ceac28d904c (diff)
downloadcpython-5111c522e7ae21ad3342f14be4a5ff46230b46b0.zip
cpython-5111c522e7ae21ad3342f14be4a5ff46230b46b0.tar.gz
cpython-5111c522e7ae21ad3342f14be4a5ff46230b46b0.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 18ade40..1fcbcf9 100644
--- a/Doc/library/decimal.rst
+++ b/Doc/library/decimal.rst
@@ -1560,7 +1560,7 @@ throughout an application?
A. Some operations like addition, subtraction, and multiplication by an integer
will automatically preserve fixed point. Others operations, like division and
non-integer multiplication, will change the number of decimal places and need to
-be followed-up with a :meth:`quantize` step.
+be followed-up with a :meth:`quantize` step::
>>> a = Decimal('102.72') # Initial fixed-point values
>>> b = Decimal('3.17')