diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-01-22 11:17:20 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-01-22 11:17:20 +0100 |
commit | ff7e7bd260f8541d4c3303a8c82ae438402e71c3 (patch) | |
tree | e8ddfe0cae6d580237bdc8edac894a896a155469 /core | |
parent | 7e76a67d1e6d8814622ac0eb6f40d659f25dce6e (diff) |
Thread: Fix typo in destructor error message
Diffstat (limited to 'core')
-rw-r--r-- | core/bind/core_bind.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/bind/core_bind.cpp b/core/bind/core_bind.cpp index 68650019a2..95f433607c 100644 --- a/core/bind/core_bind.cpp +++ b/core/bind/core_bind.cpp @@ -2773,8 +2773,9 @@ _Thread::_Thread() { _Thread::~_Thread() { - ERR_FAIL_COND_MSG(active, "Reference to a Thread object object was lost while the thread is still running..."); + ERR_FAIL_COND_MSG(active, "Reference to a Thread object was lost while the thread is still running..."); } + ///////////////////////////////////// PoolStringArray _ClassDB::get_class_list() const { |