diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2012-01-14 04:44:49 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2012-01-14 04:44:49 (GMT) |
commit | ec6d7c89bedc53091e3ca078937156b092255117 (patch) | |
tree | 81c6cb6a88c800be18f6bea27b81789ed4ca74e9 /Doc | |
parent | 77b1ecf0adb0edf51958ebeef8e93ba3cfea5601 (diff) | |
parent | a931463feab06b3976396bfc2db18cb6b00ac518 (diff) | |
download | cpython-ec6d7c89bedc53091e3ca078937156b092255117.zip cpython-ec6d7c89bedc53091e3ca078937156b092255117.tar.gz cpython-ec6d7c89bedc53091e3ca078937156b092255117.tar.bz2 |
Merge with 3.2 #13730 grammar fix
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/decimal.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index d6cd504..ef8b43f 100644 --- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst @@ -29,7 +29,7 @@ arithmetic. It offers several advantages over the :class:`float` datatype: people learn at school." -- excerpt from the decimal arithmetic specification. * Decimal numbers can be represented exactly. In contrast, numbers like - :const:`1.1` and :const:`2.2` do not have an exact representations in binary + :const:`1.1` and :const:`2.2` do not have exact representations in binary floating point. End users typically would not expect ``1.1 + 2.2`` to display as :const:`3.3000000000000003` as it does with binary floating point. |