class: Stream
authorClaus Gittinger <cg@exept.de>
Wed, 10 Jun 2015 02:38:46 +0200
changeset 18478 245b268192d5
parent 18477 02e08c7c3be0
child 18479 edff93c290bb
class: Stream comment/format in: #upToAny:
Stream.st
--- a/Stream.st	Wed Jun 10 00:07:34 2015 +0200
+++ b/Stream.st	Wed Jun 10 02:38:46 2015 +0200
@@ -226,6 +226,7 @@
 ! !
 
 
+
 !Stream methodsFor:'accessing'!
 
 contents
@@ -2726,7 +2727,7 @@
 upToAny:aCollectionOfObjects
     "read a collection of all objects up-to a element which is contained in
      aCollectionOfObjects and return these elements, but excluding the matching one. 
-     The next read operation will return the element after anObject.
+     The next read operation will return the element AFTER anObject.
      If no such element is encountered, all elements up to the end are read
      and returned.
      Compare this with #throughAll: which also reads up to some object
@@ -3806,11 +3807,11 @@
 !Stream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Stream.st,v 1.245 2015-05-23 13:09:26 cg Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Stream.st,v 1.245 2015-05-23 13:09:26 cg Exp $'
+    ^ '$Header$'
 ! !