From bba63dfae0f730f7e2bfc81eb0f4d942f5401723 Mon Sep 17 00:00:00 2001 From: Laurent Gomila Date: Sat, 30 Jun 2012 20:11:43 +0200 Subject: [PATCH] Minor correction in API doc --- include/SFML/System/Mutex.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SFML/System/Mutex.hpp b/include/SFML/System/Mutex.hpp index 0d2e71cf..60235626 100644 --- a/include/SFML/System/Mutex.hpp +++ b/include/SFML/System/Mutex.hpp @@ -138,7 +138,7 @@ private : /// /// SFML mutexes are recursive, which means that you can lock /// a mutex multiple times in the same thread without creating -/// a deadlock. In this case, the first call to Lock() behaves +/// a deadlock. In this case, the first call to lock() behaves /// as usual, and the following ones have no effect. /// However, you must call unlock() exactly as many times as you /// called lock(). If you don't, the mutex won't be released.