Queue.st
changeset 5155 2f28067db22c
parent 4976 0f047710f65c
child 5170 125d0cc824ff
--- a/Queue.st	Mon Aug 26 10:33:55 2019 +0200
+++ b/Queue.st	Mon Aug 26 10:34:11 2019 +0200
@@ -544,7 +544,8 @@
 !
 
 nextPutAll:aCollection
-    "enter all elements from aCollection into the queue."
+    "enter all elements from aCollection into the queue.
+     Answer the receiver"
 
     aCollection do:[:element | self nextPut:element].
     ^ self