From 2c4bdbb3ae4d015137e2c47c6826dcd89024b2f2 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sat, 2 Aug 2025 21:19:23 -0500 Subject: [PATCH] Cleanup: Fix typo of 'exit' in documentation comments. --- level_0/f_thread/c/thread.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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. -- 1.8.3.1