[Python-checkins] r60810 - python/trunk/Doc/library/decimal.rst

raymond.hettinger python-checkins at python.org
Thu Feb 14 20:02:39 CET 2008


Author: raymond.hettinger
Date: Thu Feb 14 20:02:39 2008
New Revision: 60810

Modified:
   python/trunk/Doc/library/decimal.rst
Log:
Fix markup

Modified: python/trunk/Doc/library/decimal.rst
==============================================================================
--- python/trunk/Doc/library/decimal.rst	(original)
+++ python/trunk/Doc/library/decimal.rst	Thu Feb 14 20:02:39 2008
@@ -1560,7 +1560,7 @@
 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')


More information about the Python-checkins mailing list