comment
authorClaus Gittinger <cg@exept.de>
Mon, 14 Oct 1996 17:32:09 +0200
changeset 1730 e668db8cbae0
parent 1729 48196b43bb18
child 1731 d0d876111aa2
comment
Array.st
--- a/Array.st	Mon Oct 14 15:29:47 1996 +0200
+++ b/Array.st	Mon Oct 14 17:32:09 1996 +0200
@@ -257,7 +257,8 @@
 at:index
     "return the indexed instance variable with index, anInteger.
      Reimplemented here to avoid the additional at:->basicAt: send
-     (which we can do here, since at: is obviously not redefined in a subclass).
+     (which we can do here, since when arriving here, #at: is obviously not 
+      redefined in a subclass).
      This method is the same as basicAt:."
 
 %{  /* NOCONTEXT */
@@ -290,7 +291,8 @@
     "store the 2nd arg, anObject as indexed instvar with index, anInteger.
      Returns anObject (sigh).
      Reimplemented here to avoid the additional at:put:->basicAt:put: send
-     (which we can do here, since at: is obviously not redefined in a subclass).
+     (which we can do here, since when arriving here, #atput:: is obviously not
+      redefined in a subclass).
      This method is the same as basicAt:put:."
 
 %{  /* NOCONTEXT */
@@ -402,7 +404,8 @@
 size
     "return the number of indexed elements in the receiver.
      Reimplemented here to avoid the additional size->basicSize send
-     (which we can do here, since size is obviously not redefined in a subclass).
+     (which we can do here, since when arriving here, #size is obviously not
+      redefined in a subclass).
      This method is the same as basicSize."
 
 %{  /* NOCONTEXT */
@@ -1628,5 +1631,5 @@
 !Array  class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Array.st,v 1.73 1996-10-07 17:46:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Array.st,v 1.74 1996-10-14 15:32:09 cg Exp $'
 ! !