From f410daffec29fa5a14197048bc3e12bddb7c9450 Mon Sep 17 00:00:00 2001 From: Mathieu Malaterre Date: Wed, 2 Apr 2008 08:36:51 -0400 Subject: STYLE: minor comments --- Source/kwsys/Process.h.in | 4 ++-- Source/kwsys/ProcessUNIX.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/kwsys/Process.h.in b/Source/kwsys/Process.h.in index 26ff75e..0641528 100644 --- a/Source/kwsys/Process.h.in +++ b/Source/kwsys/Process.h.in @@ -106,7 +106,7 @@ kwsysEXPORT void kwsysProcess_Delete(kwsysProcess* cp); /** * Set the command line to be executed. Argument is an array of - * pointers to the command and each argument. Ths array must end with + * pointers to the command and each argument. The array must end with * a NULL pointer. Any previous command lines are removed. Returns * 1 for success and 0 otherwise. */ @@ -115,7 +115,7 @@ kwsysEXPORT int kwsysProcess_SetCommand(kwsysProcess* cp, /** * Add a command line to be executed. Argument is an array of - * pointers to the command and each argument. Ths array must end with + * pointers to the command and each argument. The array must end with * a NULL pointer. If this is not the first command added, its * standard input will be connected to the standard output of the * previous command. Returns 1 for success and 0 otherwise. diff --git a/Source/kwsys/ProcessUNIX.c b/Source/kwsys/ProcessUNIX.c index d6d7fcb..871a53e 100644 --- a/Source/kwsys/ProcessUNIX.c +++ b/Source/kwsys/ProcessUNIX.c @@ -2408,7 +2408,7 @@ static void kwsysProcessKill(pid_t process_id) { if(ppid == process_id) { - /* Recursively kill this child aned its children. */ + /* Recursively kill this child and its children. */ kwsysProcessKill(pid); } } -- cgit v0.12