Skip to content
Snippets Groups Projects
Commit f477fe3f authored by Mathieu Malaterre's avatar Mathieu Malaterre
Browse files

STYLE: minor comments

parent 8ae25017
No related branches found
No related tags found
No related merge requests found
......@@ -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.
......
......@@ -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);
}
}
......
......@@ -4,7 +4,7 @@
SET(KWSYS_DATE_STAMP_YEAR 2008)
# KWSys version date month component. Format is MM.
SET(KWSYS_DATE_STAMP_MONTH 03)
SET(KWSYS_DATE_STAMP_MONTH 04)
# KWSys version date day component. Format is DD.
SET(KWSYS_DATE_STAMP_DAY 27)
SET(KWSYS_DATE_STAMP_DAY 02)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment