ArithmeticValue.st
branchjv
changeset 18062 014678b4657a
parent 18025 036717d61eda
parent 15279 7dd8da92779e
child 18120 e3a375d5f6a8
--- a/ArithmeticValue.st	Tue May 28 00:23:55 2013 +0100
+++ b/ArithmeticValue.st	Fri May 31 00:35:21 2013 +0100
@@ -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 $'
 ! !