From 1e8fd575a99637b519270ceb40a4b4ca85053b72 Mon Sep 17 00:00:00 2001 From: Sepehr Kalanaki Date: Wed, 15 Oct 2025 12:05:19 +0330 Subject: [PATCH] Fix typo in mutex documentation Change "more times that" to "more times than" --- doc/classes/Mutex.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/classes/Mutex.xml b/doc/classes/Mutex.xml index 4fdf46bb3a..9e08fa973a 100644 --- a/doc/classes/Mutex.xml +++ b/doc/classes/Mutex.xml @@ -35,7 +35,7 @@ Unlocks this [Mutex], leaving it to other threads. [b]Note:[/b] If a thread called [method lock] or [method try_lock] multiple times while already having ownership of the mutex, it must also call [method unlock] the same number of times in order to unlock it correctly. - [b]Warning:[/b] Calling [method unlock] more times that [method lock] on a given thread, thus ending up trying to unlock a non-locked mutex, is wrong and may causes crashes or deadlocks. + [b]Warning:[/b] Calling [method unlock] more times than [method lock] on a given thread, thus ending up trying to unlock a non-locked mutex, is wrong and may causes crashes or deadlocks.