OSProcess.st
changeset 21551 a00b3ea45664
parent 21512 a78759923d34
child 21552 7732a5719d14
--- a/OSProcess.st	Thu Feb 23 02:52:39 2017 +0100
+++ b/OSProcess.st	Thu Feb 23 10:47:47 2017 +0100
@@ -577,7 +577,7 @@
 
 terminateGroup
     "terminate the process group.
-     Under Windows, these is the same as terminateWithhAllChildren,
+     Under Windows, this is the same as terminateWithhAllChildren,
      under unix, this terminates a subset of all children"
 
     pid notNil ifTrue:[
@@ -585,6 +585,8 @@
             terminateProcessGroup:pid;
             terminateProcess:pid.
     ].
+
+    "Modified (comment): / 23-02-2017 / 10:46:27 / Maren"
 ! !
 
 !OSProcess methodsFor:'waiting'!