From: Kevin Day Date: Sun, 3 Aug 2025 02:19:23 +0000 (-0500) Subject: Cleanup: Fix typo of 'exit' in documentation comments. X-Git-Tag: 0.7.3~33 X-Git-Url: https://www.git.kevux.org/?a=commitdiff_plain;h=2c4bdbb3ae4d015137e2c47c6826dcd89024b2f2;p=fll Cleanup: Fix typo of 'exit' in documentation comments. --- diff --git a/level_0/f_thread/c/thread.h b/level_0/f_thread/c/thread.h index bb007e7..a3b4a01 100644 --- a/level_0/f_thread/c/thread.h +++ b/level_0/f_thread/c/thread.h @@ -1332,7 +1332,7 @@ extern "C" { * @param id * The ID of the thread to wait for. * @param result - * (optional) The data returned by the terminated thread (usually the exist status). + * (optional) The data returned by the terminated thread (usually the exit status). * If the terminated thread is cancelled, then this holds PTHREAD_CANCELED. * * Set to NULL to not use. @@ -1361,7 +1361,7 @@ extern "C" { * @param id * The ID of the thread to wait for. * @param result - * (optional) The data returned by the terminated thread (usually the exist status). + * (optional) The data returned by the terminated thread (usually the exit status). * If the terminated thread is cancelled, then this holds PTHREAD_CANCELED. * * Set to NULL to not use. @@ -1395,7 +1395,7 @@ extern "C" { * The amount of time to wait for. * The wait time is relative to the clock, so consider calling clock_gettime() or gettimeofday() and then adding the amount of wait time. * @param result - * (optional) The data returned by the terminated thread (usually the exist status). + * (optional) The data returned by the terminated thread (usually the exit status). * If the terminated thread is cancelled, then this holds PTHREAD_CANCELED. * * Set to NULL to not use.