Integer.st
changeset 9136 90f12ada7068
parent 9134 98d5bfd1cc51
child 9141 dc20ee8ba916
--- a/Integer.st	Fri Feb 17 15:23:19 2006 +0100
+++ b/Integer.st	Fri Feb 17 15:30:31 2006 +0100
@@ -3256,7 +3256,7 @@
 
     "/ the following is a q&d hack, using existing code.
     ^ (Integer
-        readFrom:(self printStringRadix:p)
+        readFromString:(self printStringRadix:p)
         radix:2
         onError:-1) isPowerOfTwo
 
@@ -3666,7 +3666,7 @@
 !Integer class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Integer.st,v 1.182 2006-02-17 13:52:41 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Integer.st,v 1.183 2006-02-17 14:30:31 cg Exp $'
 ! !
 
 Integer initialize!