aboutsummaryrefslogtreecommitdiff
path: root/modules/gdscript/gd_script.cpp
diff options
context:
space:
mode:
authorJuan Linietsky2015-05-18 10:20:54 -0300
committerJuan Linietsky2015-05-18 10:20:54 -0300
commite323cc050564fdb1b5cf81793d173cbd9483f55a (patch)
treea8355abfbd7d1d096749777d11f9fa753ed50d6e /modules/gdscript/gd_script.cpp
parent5272853cdc1c37fc545c443370bf87642122f4cc (diff)
downloadgodot-e323cc050564fdb1b5cf81793d173cbd9483f55a.tar.gz
godot-e323cc050564fdb1b5cf81793d173cbd9483f55a.tar.zst
godot-e323cc050564fdb1b5cf81793d173cbd9483f55a.zip
Diffstat (limited to 'modules/gdscript/gd_script.cpp')
-rw-r--r--modules/gdscript/gd_script.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gd_script.cpp b/modules/gdscript/gd_script.cpp
index c9b00f49a..ceca1ff2b 100644
--- a/modules/gdscript/gd_script.cpp
+++ b/modules/gdscript/gd_script.cpp
@@ -140,7 +140,7 @@ String GDFunction::_get_call_error(const Variant::CallError& p_err, const String
} else if (p_err.error==Variant::CallError::CALL_ERROR_TOO_FEW_ARGUMENTS) {
err_text="Invalid call to "+p_where+". Expected "+itos(p_err.argument)+" arguments.";
} else if (p_err.error==Variant::CallError::CALL_ERROR_INVALID_METHOD) {
- err_text="Invalid call. Unexisting "+p_where+".";
+ err_text="Invalid call. Nonexistent "+p_where+".";
} else if (p_err.error==Variant::CallError::CALL_ERROR_INSTANCE_IS_NULL) {
err_text="Attempt to call "+p_where+" on a null instance.";
} else {