From f003461a0b3dc418a934bf5ee637f52caca0c9c0 Mon Sep 17 00:00:00 2001 From: SDL Wiki Bot Date: Tue, 11 Jun 2024 16:23:27 +0000 Subject: [PATCH] Sync SDL3 wiki -> header --- include/SDL3/SDL_thread.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/include/SDL3/SDL_thread.h b/include/SDL3/SDL_thread.h index aed8715df6..5414d311ad 100644 --- a/include/SDL3/SDL_thread.h +++ b/include/SDL3/SDL_thread.h @@ -494,8 +494,7 @@ extern SDL_DECLSPEC void * SDLCALL SDL_GetTLS(SDL_TLSID id); /** * The callback used to cleanup data passed to SDL_SetTLS. * - * This is called when a thread exits, to allow an app to - * free any resources. + * This is called when a thread exits, to allow an app to free any resources. * * \param value a pointer previously handed to SDL_SetTLS. * @@ -511,8 +510,8 @@ typedef void (SDLCALL *SDL_TLSDestructorCallback)(void *value); * Note that replacing a value from a previous call to this function on the * same thread does _not_ call the previous value's destructor! * - * `destructor` can be NULL; it is assumed that `value` does not need - * to be cleaned up if so. + * `destructor` can be NULL; it is assumed that `value` does not need to be + * cleaned up if so. * * \param id the thread local storage ID * \param value the value to associate with the ID for the current thread