diff options
Diffstat (limited to 'core/os/safe_binary_mutex.h')
-rw-r--r-- | core/os/safe_binary_mutex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/os/safe_binary_mutex.h b/core/os/safe_binary_mutex.h index 1e98cc074c..8e9e368f69 100644 --- a/core/os/safe_binary_mutex.h +++ b/core/os/safe_binary_mutex.h @@ -43,7 +43,7 @@ // - Must have recursive semnantics (or simulate, as this one does). // The implementation keeps the lock count in TS. Therefore, only // one object of each version of the template can exists; hence the Tag argument. -// Tags must be unique across the Godot codebase. +// Tags must be unique across the Redot codebase. // Also, don't forget to declare the thread_local variable on each use. template <int Tag> class SafeBinaryMutex { |