diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-30 14:23:36 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-30 14:23:36 +0200 |
commit | 166df0896c4e601c58f7261145afba5ee4a088a5 (patch) | |
tree | 5ad261b43692be47257985a52e4a5a744202434d /core/object | |
parent | f47979f0874b2ca6134e71575fbb359c6cc5ced0 (diff) |
Fix typos with codespell
Using codespell 2.3-dev from current git.
And fix typo in `methods.py` for `vsproj=yes` option (still won't work
though).
Diffstat (limited to 'core/object')
-rw-r--r-- | core/object/worker_thread_pool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/object/worker_thread_pool.cpp b/core/object/worker_thread_pool.cpp index c770515b9e..9b3dc6833e 100644 --- a/core/object/worker_thread_pool.cpp +++ b/core/object/worker_thread_pool.cpp @@ -395,7 +395,7 @@ void WorkerThreadPool::wait_for_group_task_completion(GroupID p_group) { uint32_t finished_users = group->finished.increment(); // fetch happens before inc, so increment later. if (finished_users == max_users) { - // All tasks using this group are gone (finished before the group), so clear the gorup too. + // All tasks using this group are gone (finished before the group), so clear the group too. task_mutex.lock(); group_allocator.free(group); task_mutex.unlock(); |