Process.st
changeset 2689 ada9b102abcf
parent 2636 8cb50e1b0688
child 2724 9fb9ea4bf858
--- a/Process.st	Mon Jun 16 11:57:37 1997 +0200
+++ b/Process.st	Mon Jun 16 20:21:41 1997 +0200
@@ -63,7 +63,7 @@
     cleanup blocks are evaluated.
     (so a process which has set up those blocks correctly does not have to
      care especially about cleanup in case of termination).
-    Other than that, the TerminateSignal can be cought for special cleanup or
+    Other than that, the TerminateSignal can be caught for special cleanup or
     even to make the process continue execution.
 
     A hard terminate (Process>>terminateNoSignal) will NOT do all of the above,
@@ -152,15 +152,15 @@
     [Class variables:]
 
         TerminateSignal         <Signal>        signal used to terminate processes
-                                                (should not be cought - or at least
+                                                (should not be caught - or at least
                                                  rejected in handlers).
-                                                If cought and proceeded, a process
+                                                If caught and proceeded, a process
                                                 cannot be terminated via #terminate.
                                                 For hardTermination (in case of emergency),
                                                 send it a #erminateNoSignal message.
 
         RestartSignal           <Signal>        signal used to restart a process.
-                                                Can be cought in additional handler(s),
+                                                Can be caught in additional handler(s),
                                                 to perform all kind of re-initialization.
                                                 However, these handlers should reject,
                                                 for the restart to be really performed.
@@ -1237,7 +1237,7 @@
 terminate
     "terminate the receiver process. 
      Termination is done by raising the terminateSignal in the receiver process, 
-     which can be cought.
+     which can be caught.
      All unwind actions and the exit-actions (if any)
      will be performed before the process is really terminated."
 
@@ -1341,6 +1341,6 @@
 !Process class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Process.st,v 1.77 1997-05-09 10:16:44 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Process.st,v 1.78 1997-06-16 18:21:30 cg Exp $'
 ! !
 Process initialize!