summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-07-03 09:15:09 +0000
committerMark Dickinson <dickinsm@gmail.com>2010-07-03 09:15:09 +0000
commitc9cfcd214a6f70af8a0ece375060cc70bba17a73 (patch)
treec5160b42094cd0a61dc3136e3be9fa04a5e9311a
parent7a17a70cd85e9f79c5e9833748dd6f0666102ee3 (diff)
downloadcpython-c9cfcd214a6f70af8a0ece375060cc70bba17a73.tar.gz
Fix typo in sys.float_info docs.
-rw-r--r--Doc/library/sys.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst
index e0f96caaf7..ca5d2b06d1 100644
--- a/Doc/library/sys.rst
+++ b/Doc/library/sys.rst
@@ -305,7 +305,7 @@ always available.
+---------------------+----------------+--------------------------------------------------+
| attribute | float.h macro | explanation |
+=====================+================+==================================================+
- | :const:`epsilon` | DBL_MAX | difference between 1 and the least value greater |
+ | :const:`epsilon` | DBL_EPSILON | difference between 1 and the least value greater |
| | | than 1 that is representable as a float |
+---------------------+----------------+--------------------------------------------------+
| :const:`dig` | DBL_DIG | maximum number of decimal digits that can be |