Stream.st
changeset 20254 5b84a00d217b
parent 20242 92d211a6151f
child 20305 e61e2ce6a6f5
child 20342 219a5a47e8b1
--- a/Stream.st	Mon Aug 15 12:50:35 2016 +0200
+++ b/Stream.st	Mon Aug 15 12:50:38 2016 +0200
@@ -3918,7 +3918,7 @@
      becomes ready for reading or a timeout (in seconds) expired.
      If data is already available, return immediate.
      With nil seconds, wait forever.
-     Return true if a timeout occured (i.e. false, if data is available).
+     Return true if a timeout occurred (i.e. false, if data is available).
      The other threads are not affected by the wait."
 
     |ms|
@@ -3938,7 +3938,7 @@
      becomes ready for reading or a timeout (in milliseconds) expired.
      If data is already available, return immediate.
      With nil millis, wait forever.
-     Return true if a timeout occured (i.e. false, if data is available).
+     Return true if a timeout occurred (i.e. false, if data is available).
      The other threads are not affected by the wait."
 
     ^ false "/ never have to wait
@@ -3974,7 +3974,7 @@
 writeWaitWithTimeout:secondsOrTimeDuration
     "suspend the current process, until the receiver
      becomes ready for writing or a timeout (in seconds) expired.
-     Return true if a timeout occured (i.e. false, if data is available).
+     Return true if a timeout occurred (i.e. false, if data is available).
      Return immediate if the receiver is already ready.
      The other threads are not affected by the wait."