LineNumberReadStream.st
changeset 3540 9ee4ac3d4fc8
parent 3329 170f49ba6c9a
child 4201 e29dfac90a57
--- a/LineNumberReadStream.st	Wed Apr 22 20:03:33 2015 +0200
+++ b/LineNumberReadStream.st	Wed Apr 22 20:07:41 2015 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1996 by eXept Software AG
 	      All Rights Reserved
@@ -11,6 +13,8 @@
 "
 "{ Package: 'stx:libbasic2' }"
 
+"{ NameSpace: Smalltalk }"
+
 FilteringStream subclass:#LineNumberReadStream
 	instanceVariableNames:'lineNumber lineStartPosition'
 	classVariableNames:''
@@ -188,7 +192,7 @@
 !LineNumberReadStream methodsFor:'reading'!
 
 upToAll_positionBefore:aCollection
-    "read until a subcollection consisisting of the elements in aCollection is encountered.
+    "read until a subcollection consisting of the elements in aCollection is encountered.
      Return everything read excluding the elements in aCollection.
      The position is left before the collection; i.e. the next
      read operations will return those elements.
@@ -221,10 +225,10 @@
 !LineNumberReadStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/LineNumberReadStream.st,v 1.11 2014-09-16 11:05:26 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/LineNumberReadStream.st,v 1.12 2015-04-22 18:07:41 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/LineNumberReadStream.st,v 1.11 2014-09-16 11:05:26 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/LineNumberReadStream.st,v 1.12 2015-04-22 18:07:41 stefan Exp $'
 ! !