Queue.st
changeset 1245 99e070f7c351
parent 1121 e7136d381499
child 1494 8f617564556b
--- a/Queue.st	Wed Jun 11 10:08:35 2003 +0200
+++ b/Queue.st	Wed Jun 11 10:37:18 2003 +0200
@@ -37,8 +37,8 @@
 
 documentation
 "
-    Queues provides a simple implementation of a queue, where
-    elements are added at one end and removed at the other.
+    Queues provides a simple implementation of a queue, 
+    where elements are added at one end and removed at the other.
     Access protocol is somewhat like a streams protocol, i.e. access
     is by #nextPut: and #next.
     The queue is created with a size argument, defining how many elements
@@ -349,5 +349,5 @@
 !Queue class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/Queue.st,v 1.27 2002-11-26 09:03:40 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/Queue.st,v 1.28 2003-06-11 08:37:18 cg Exp $'
 ! !