SmallInteger.st
changeset 17034 3986298f193f
parent 17033 9190f2b40619
child 17036 ef45fc0336fc
--- a/SmallInteger.st	Tue Nov 11 15:13:04 2014 +0100
+++ b/SmallInteger.st	Tue Nov 11 15:20:30 2014 +0100
@@ -672,8 +672,6 @@
         -10 \\ 3 -> 2 (because -(10/3) is truncated towards next smaller integer, which is -4,
                         and -4 * 4 gives -12, so we need to add 2 to get the original -10.
 
-     The following is always true:
-        (receiver // aNumber) * aNumber + (receiver \\ aNumber) = receiver
      See #rem: which is the corresponding remainder for division via #quo:.
 
      Redefined here for speed."
@@ -4538,11 +4536,11 @@
 !SmallInteger class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/SmallInteger.st,v 1.223 2014-11-11 14:13:04 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SmallInteger.st,v 1.224 2014-11-11 14:20:30 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/SmallInteger.st,v 1.223 2014-11-11 14:13:04 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SmallInteger.st,v 1.224 2014-11-11 14:20:30 cg Exp $'
 ! !