class: ArithmeticValue
authorClaus Gittinger <cg@exept.de>
Mon, 27 May 2013 10:14:43 +0200
changeset 15279 7dd8da92779e
parent 15278 ddf05cd996da
child 15280 96826a417ba5
class: ArithmeticValue comment/format in: #mul2
ArithmeticValue.st
--- a/ArithmeticValue.st	Mon May 27 10:14:32 2013 +0200
+++ b/ArithmeticValue.st	Mon May 27 10:14:43 2013 +0200
@@ -203,6 +203,7 @@
     ^ self == ArithmeticValue
 ! !
 
+
 !ArithmeticValue methodsFor:'arithmetic'!
 
 * something
@@ -392,7 +393,7 @@
 mul2
     "Return the product of self multiplied by 2.
      The receiver MAY, but NEED NOT be changed to contain the result.
-     So this method must be used as: 'a := a mul2.
+     So this method must be used as: a := a mul2.
      This method can be redefined for constructed datatypes to do optimisations"
 
     ^ self * 2
@@ -1353,11 +1354,11 @@
 !ArithmeticValue class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ArithmeticValue.st,v 1.91 2013-02-05 14:24:46 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ArithmeticValue.st,v 1.92 2013-05-27 08:14:43 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/ArithmeticValue.st,v 1.91 2013-02-05 14:24:46 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ArithmeticValue.st,v 1.92 2013-05-27 08:14:43 cg Exp $'
 ! !