LinkList.st
changeset 1164 38c54a4f1273
parent 1110 c425b5d28a89
child 1290 15ba3221b89b
--- a/LinkList.st	Fri Apr 12 18:52:24 1996 +0200
+++ b/LinkList.st	Fri Apr 12 18:55:03 1996 +0200
@@ -222,12 +222,13 @@
 !
 
 removeAll
-    "remove all elements from the sequence"
+    "remove all elements from the sequence. Returns the receiver."
 
     firstLink := lastLink := nil.
     numberOfNodes := 0
 
     "Created: 21.3.1996 / 15:24:38 / cg"
+    "Modified: 12.4.1996 / 13:34:53 / cg"
 !
 
 removeFirst
@@ -377,5 +378,5 @@
 !LinkedList class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Attic/LinkList.st,v 1.22 1996-03-21 14:24:59 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Attic/LinkList.st,v 1.23 1996-04-12 16:54:32 cg Exp $'
 ! !