summaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
Diffstat (limited to 'core/src')
-rw-r--r--core/src/xmake/engine.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/xmake/engine.c b/core/src/xmake/engine.c
index 412b41661..d81828f1f 100644
--- a/core/src/xmake/engine.c
+++ b/core/src/xmake/engine.c
@@ -591,8 +591,8 @@ static luaL_Reg const g_string_functions[] = {
{ "convert", xm_string_convert },
{ "endswith", xm_string_endswith },
{ "startswith", xm_string_startswith },
- { "lower", xm_string_tolower },
- { "upper", xm_string_toupper },
+ { "lower", xm_string_lower },
+ { "upper", xm_string_upper },
{ tb_null, tb_null },
};