Fix all spelling mistakes in history by typos tool

This commit is contained in:
Cautreoxit
2024-08-26 15:31:58 +08:00
committed by Tate, Hongliang Tian
parent b29d3b5409
commit 86f09eef75
120 changed files with 255 additions and 213 deletions

View File

@ -14,7 +14,7 @@
*
* - To define a setup function or a test function, FN_SETUP() or FN_TEST() can
* be used. These functions are automatically executed in the order of their
* definiton. Note that the order of execution is _not_ related to whether a
* definition. Note that the order of execution is _not_ related to whether a
* function is a setup function or a test function.
*
* - Within a setup function, CHECK() can be used to write a setup expression
@ -57,7 +57,7 @@
}
/**
* Makes a fucntion call and checks its return value is positive.
* Makes a function call and checks its return value is positive.
*
* The execution will be aborted if the check fails.
*/

View File

@ -279,7 +279,7 @@ int test_sigchld()
int pid = fork();
if (pid == 0) {
// child process
printf("create a new proces successfully (pid = %d)\n",
printf("create a new process successfully (pid = %d)\n",
getpid());
fflush(stdout);
exit(0);