Float.st
changeset 24461 6bb78b5e6b15
parent 24452 2ae8e067fc86
child 24615 5ee09c822a98
--- a/Float.st	Mon Jul 22 20:16:37 2019 +0200
+++ b/Float.st	Mon Jul 22 20:16:59 2019 +0200
@@ -205,7 +205,8 @@
 documentation
 "
     Floats represent rational numbers with limited precision.
-    They use the C-compilers 'double' format, which is usually the 8byte IEEE double float format.
+    They use the C-compiler's 'double' format, 
+    which is usually the 8byte IEEE double float format.
 
     Floats give you 64 bit floats.
     In contrast to ShortFloats (32bit) and LongFloats (>=64bit).
@@ -243,7 +244,7 @@
             64bit double precision IEEE floats
             52 bit mantissa + 1 hidden bit providing 53 bits of precision,
             11 bit exponent,
-            15 decimal digits (approx)
+            15 decimal digits (approx.)
 
     Range and Precision of Storage Formats: see LimitedPrecisionReal >> documentation