From 39af05fc6e5dc06a7529612a62db3d3875682ff4 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Sat, 3 Jul 2010 09:17:16 +0000 Subject: [PATCH] Merged revisions 82476 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r82476 | mark.dickinson | 2010-07-03 10:15:09 +0100 (Sat, 03 Jul 2010) | 1 line Fix typo in sys.float_info docs. ........ --- Doc/library/sys.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 2ce748f21ff..770c267b71c 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -232,7 +232,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 |