From 2e9eb1073d1ff3d942330aac42f25e5f998f0df8 Mon Sep 17 00:00:00 2001 From: SDL Wiki Bot Date: Thu, 26 Oct 2023 18:23:13 +0000 Subject: [PATCH] Sync SDL3 wiki -> header --- include/SDL3/SDL_mutex.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/SDL3/SDL_mutex.h b/include/SDL3/SDL_mutex.h index 559fda79e6f64..6f13eb05d65a5 100644 --- a/include/SDL3/SDL_mutex.h +++ b/include/SDL3/SDL_mutex.h @@ -749,8 +749,8 @@ extern DECLSPEC int SDLCALL SDL_WaitCondition(SDL_Condition *cond, SDL_Mutex *mu * * \param cond the condition variable to wait on * \param mutex the mutex used to coordinate thread access - * \param timeoutMS the maximum time to wait, in milliseconds, or - * -1 to wait indefinitely + * \param timeoutMS the maximum time to wait, in milliseconds, or -1 to wait + * indefinitely * \returns 0 if the condition variable is signaled, `SDL_MUTEX_TIMEDOUT` if * the condition is not signaled in the allotted time, or a negative * error code on failure; call SDL_GetError() for more information.