Behavior.st
changeset 457 41c73cbee305
parent 442 65a11cda5e9e
child 492 fa23b14f444b
--- a/Behavior.st	Sun Oct 29 19:08:45 1995 +0100
+++ b/Behavior.st	Sun Oct 29 20:27:04 1995 +0100
@@ -22,7 +22,7 @@
 COPYRIGHT (c) 1988 by Claus Gittinger
 	      All Rights Reserved
 
-$Header: /cvs/stx/stx/libbasic/Behavior.st,v 1.49 1995-10-23 16:50:42 cg Exp $
+$Header: /cvs/stx/stx/libbasic/Behavior.st,v 1.50 1995-10-29 19:26:10 cg Exp $
 '!
 
 !Behavior class methodsFor:'documentation'!
@@ -43,7 +43,7 @@
 
 version
 "
-$Header: /cvs/stx/stx/libbasic/Behavior.st,v 1.49 1995-10-23 16:50:42 cg Exp $
+$Header: /cvs/stx/stx/libbasic/Behavior.st,v 1.50 1995-10-29 19:26:10 cg Exp $
 "
 !
 
@@ -415,14 +415,14 @@
 
 uninitializedNew
     "create an instance of myself with uninitialized contents.
-     For all classes except ByteArray, this is the same as new."
+     For all classes except ByteArray, this is the same as #basicNew."
 
     ^ self basicNew
 !
 
 uninitializedNew:anInteger
     "create an instance of myself with uninitialized contents.
-     For all classes except ByteArray, this is the same as new."
+     For all classes except ByteArray, this is the same as #basicNew:."
 
     ^ self basicNew:anInteger
 !
@@ -1442,8 +1442,8 @@
 !
 
 selectors
-    "return the receivers selector array.
-     Notice: this may not compatible with ST-80.
+    "return the receivers selector array as an orderedCollection.
+     Notice: this may not be compatible with ST-80.
      (should we return a Set ?)"
 
     ^ selectorArray asOrderedCollection