class: Integer
authorClaus Gittinger <cg@exept.de>
Fri, 14 Feb 2014 17:23:00 +0100
changeset 16040 4708e4544528
parent 16039 483922f17924
child 16041 989a985b6f61
class: Integer comment/format in: #asBCD
Integer.st
--- a/Integer.st	Fri Feb 14 17:21:09 2014 +0100
+++ b/Integer.st	Fri Feb 14 17:23:00 2014 +0100
@@ -3543,8 +3543,8 @@
      that is: each digit of its decimal representation is placed into a nibble
      of the result. (aka 162 -> 0x162).
      This conversion is useful for some communication protocols,
-     or control systems, which represent big numbers this way...
-     This is not particularily tuned or optimized for speed."
+     or control systems, which represent numbers this way...
+     This fallback code is not particularily tuned or optimized for speed."
 
     |rest twoDigits hi lo shift out|
 
@@ -5042,11 +5042,11 @@
 !Integer class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Integer.st,v 1.294 2014-02-14 16:15:47 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Integer.st,v 1.295 2014-02-14 16:23:00 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Integer.st,v 1.294 2014-02-14 16:15:47 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Integer.st,v 1.295 2014-02-14 16:23:00 cg Exp $'
 ! !