From dbd4b88abce852bb11d850333f28c66681cb5530 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Mon, 9 Jan 2023 09:04:05 -0800 Subject: [PATCH] Generally removed generally --- include/SDL3/SDL_atomic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL3/SDL_atomic.h b/include/SDL3/SDL_atomic.h index 5e29ba007..65a6a4e44 100644 --- a/include/SDL3/SDL_atomic.h +++ b/include/SDL3/SDL_atomic.h @@ -81,7 +81,7 @@ extern "C" { * They are also vulnerable to starvation if the thread holding * the lock is lower priority than other threads and doesn't get * scheduled. In general you should use mutexes instead, since - * in general they have better performance and contention behavior. + * they have better performance and contention behavior. * * The atomic locks are not safe to lock recursively. *