Stream.st
changeset 7118 10b067555add
parent 7104 c88669d779f5
child 7187 0623295facbf
--- a/Stream.st	Tue Mar 18 17:49:47 2003 +0100
+++ b/Stream.st	Wed Mar 19 12:23:34 2003 +0100
@@ -1663,7 +1663,7 @@
 
 nextOrNil
     "like #next, this returns the next element, if available.
-     If nothing is available, this does never raise a read-behond end signal.
+     If nothing is available, this does never raise a read-beyond end signal.
      Instead, nil is returned immediately."
 
     self atEnd ifTrue:[^ nil].
@@ -2536,7 +2536,7 @@
 !Stream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Stream.st,v 1.108 2003-03-03 20:03:18 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Stream.st,v 1.109 2003-03-19 11:23:34 cg Exp $'
 ! !
 
 Stream initialize!