$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: pbristow_at_[hidden]
Date: 2008-05-13 13:37:20
Author: pbristow
Date: 2008-05-13 13:37:20 EDT (Tue, 13 May 2008)
New Revision: 45335
URL: http://svn.boost.org/trac/boost/changeset/45335
Log:
Tiny correction to example
Text files modified:
sandbox/math_toolkit/libs/math/doc/sf_and_dist/float_next.qbk | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
Modified: sandbox/math_toolkit/libs/math/doc/sf_and_dist/float_next.qbk
==============================================================================
--- sandbox/math_toolkit/libs/math/doc/sf_and_dist/float_next.qbk (original)
+++ sandbox/math_toolkit/libs/math/doc/sf_and_dist/float_next.qbk 2008-05-13 13:37:20 EDT (Tue, 13 May 2008)
@@ -49,11 +49,11 @@
[h4 Examples - nextafter]
-The two representations using a 32-bit float either side of unity are given by
+The two representations using a 32-bit float either side of unity are:
``
-The nearest & exact representation of 1.F is 1.10000000
-nextafter(1.F, 999) is 1.00000012
-nextafter(1/f, -999) is 0.99999994
+The nearest (exact) representation of 1.F is 1.00000000
+nextafter(1.F, 999) is 1.00000012
+nextafter(1/f, -999) is 0.99999994
The nearest (not exact) representation of 0.1F is 0.100000001
nextafter(0.1F, 10) is 0.100000009