diff options
author | Poommetee Ketson <poommetee@protonmail.com> | 2019-01-11 10:12:13 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-11 10:12:13 +0700 |
commit | 2caaa7c97d5b320bf0ee71a46be2f06b02163740 (patch) | |
tree | b354e7687e0447707dde47c23e69ecd76d0f349e | |
parent | 2cd15849f9f306a478e9c0b4080765f75cc9fa6e (diff) |
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: { |