From b8036bdd41dfc48c614a1a023804306687fcc4c8 Mon Sep 17 00:00:00 2001
From: SDL Wiki Bot <[EMAIL REDACTED]>
Date: Wed, 25 Dec 2024 21:15:58 +0000
Subject: [PATCH] Sync SDL3 wiki -> header
[ci skip]
---
include/SDL3/SDL_thread.h | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/include/SDL3/SDL_thread.h b/include/SDL3/SDL_thread.h
index 3e37c3180daf2..6bac1e402196f 100644
--- a/include/SDL3/SDL_thread.h
+++ b/include/SDL3/SDL_thread.h
@@ -104,13 +104,12 @@ typedef enum SDL_ThreadPriority {
/**
* The SDL thread state.
- *
- * SDL stores the current state of a thread in an atomic int.
- * The current state of a thread can be checked by calling
- * SDL_GetThreadState.
- *
+ *
+ * SDL stores the current state of a thread in an atomic int. The current
+ * state of a thread can be checked by calling SDL_GetThreadState.
+ *
* \since This enum is available since SDL 3.1.3.
- *
+ *
* \sa SDL_GetThreadState
*/
typedef enum SDL_ThreadState
@@ -445,10 +444,11 @@ extern SDL_DECLSPEC void SDLCALL SDL_WaitThread(SDL_Thread *thread, int *status)
* Get the current state of a thread.
*
* \param thread the thread whose status you want to check.
- * \returns the current state of a thread as defined in the SDL_ThreadState enum.
+ * \returns the current state of a thread as defined in the SDL_ThreadState
+ * enum.
+ *
+ * \since This function is available since SDL 3.2.0.
*
- * \since This function is available since SDL 3.1.3.
- *
* \sa SDL_ThreadState
*/
extern SDL_DECLSPEC SDL_ThreadState SDLCALL SDL_GetThreadState(SDL_Thread *thread);