Process.st
changeset 16846 60b0b8de3c25
parent 16563 726606d925c3
child 17244 2d730416819c
--- a/Process.st	Mon Sep 22 13:03:26 2014 +0200
+++ b/Process.st	Tue Sep 23 16:54:49 2014 +0200
@@ -1378,14 +1378,15 @@
 
 millisecondDelay:millis
     "suspend the current process for some time.
-     If the receiver is a system process (i.e. scheduler or event dispatcher)
-     this blocks the whole smalltalk for the time delta;
-     if its a normal thread, only that thread is suspended."
+     Attention:
+        If the receiver is a system process (i.e. scheduler or event dispatcher)
+        this blocks the whole Smalltalk for the time delta;
+        if it's a normal thread, only that thread is suspended."
 
     (self isSystemProcess) ifTrue:[
-	OperatingSystem millisecondDelay:millis
+        OperatingSystem millisecondDelay:millis
     ] ifFalse:[
-	Delay waitForMilliseconds:millis
+        Delay waitForMilliseconds:millis
     ]
 
     "Created: 16.12.1995 / 13:10:53 / cg"
@@ -2133,7 +2134,7 @@
 
 version_CVS
 
-    ^ '$Header: /cvs/stx/stx/libbasic/Process.st,v 1.186 2014-06-10 10:20:58 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Process.st,v 1.187 2014-09-23 14:54:49 cg Exp $'
 !
 
 version_SVN