Number.st
changeset 23479 c73c6affd861
parent 23323 fbc7256b2b0c
child 23480 4af396c83bb9
--- a/Number.st	Sat Oct 27 08:58:32 2018 +0200
+++ b/Number.st	Sat Oct 27 09:10:21 2018 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1988 by Claus Gittinger
 	      All Rights Reserved
@@ -360,8 +358,8 @@
                 "/ if I am abstract (i.e. I am Number or LPReal),
                 "/ let the exponent-character decide what kind of float we get:
                 "/      qQ   -> LongFloat
-                "/      eEdD -> Float      (which is iee-double)
-                "/      fF   -> ShortFloat (which is iee-float)
+                "/      eEdD -> Float      (which is ieee-double)
+                "/      fF   -> ShortFloat (which is ieee-float)
                 
                 self isAbstract ifTrue:[
                     ('qQ' includes:expChar) ifTrue:[
@@ -476,6 +474,7 @@
     "
 
     "Modified: / 17-07-2017 / 15:18:03 / cg"
+    "Modified (comment): / 27-10-2018 / 09:08:13 / Claus Gittinger"
 !
 
 readFrom:aStringOrStream onError:exceptionBlock