ArithmeticValue.st
changeset 15279 7dd8da92779e
parent 14747 18be9a3c2324
child 16121 7b441c381015
child 18062 014678b4657a
--- 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 $'
 ! !