Process.st
changeset 21433 548194f34708
parent 21333 e89a5aa9b463
child 21447 98a2f12066a8
--- a/Process.st	Mon Feb 13 20:43:52 2017 +0100
+++ b/Process.st	Mon Feb 13 20:44:06 2017 +0100
@@ -1701,15 +1701,16 @@
 
 restart
     "restart the process from the beginning.
-     This is only possible, if its restartable."
+     This is only possible, if it's restartable."
 
     restartable ifFalse:[
-	^ self error:'process is not restartable' mayProceed:true
+        ^ self error:'process is not restartable' mayProceed:true
     ].
 
     self interruptWith:[RestartSignal raise]
 
-    "Modified: 12.1.1997 / 00:54:32 / cg"
+    "Modified: / 12-01-1997 / 00:54:32 / cg"
+    "Modified (comment): / 13-02-2017 / 20:29:07 / cg"
 !
 
 start