diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-01-11 10:19:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-11 10:19:12 +0100 |
commit | 1b5b27430f36440c9f54f675d823c696f8eb3908 (patch) | |
tree | 9a0bba08bc001cbc65746261f0d34b2637374a26 | |
parent | 59e7fc5ff13db37aca3f02d94960f5453c540586 (diff) | |
parent | 2caaa7c97d5b320bf0ee71a46be2f06b02163740 (diff) |
Merge pull request #24904 from Naryosha/patch-2
Fix error explanation in core_bind Thread::_start_func
-rw-r--r-- | core/bind/core_bind.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/bind/core_bind.cpp b/core/bind/core_bind.cpp index 7a253ed85c..e81468e888 100644 --- a/core/bind/core_bind.cpp +++ b/core/bind/core_bind.cpp @@ -2423,7 +2423,7 @@ void _Thread::_start_func(void *ud) { } break; case Variant::CallError::CALL_ERROR_TOO_FEW_ARGUMENTS: { - reason = "Too Many Arguments"; + reason = "Too Few Arguments"; } break; case Variant::CallError::CALL_ERROR_INVALID_METHOD: { |