aboutsummaryrefslogtreecommitdiff
path: root/src/check_builtin.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2023-02-07 15:39:39 +0000
committergingerBill <bill@gingerbill.org>2023-02-07 15:39:39 +0000
commit8a16fd769969143fd6c2193e588a01420447684d (patch)
tree400aa153fea546903e34126601327e5905e34fe5 /src/check_builtin.cpp
parent7bbcf22debd8cdfdb87800e7426630ff9dd7cef9 (diff)
Rename built-in procedure to `expand_values`
Diffstat (limited to 'src/check_builtin.cpp')
-rw-r--r--src/check_builtin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/check_builtin.cpp b/src/check_builtin.cpp
index f429f9e99..5f9715959 100644
--- a/src/check_builtin.cpp
+++ b/src/check_builtin.cpp
@@ -2550,7 +2550,7 @@ gb_internal bool check_builtin_procedure(CheckerContext *c, Operand *operand, As
break;
}
- case BuiltinProc_expand_to_tuple: {
+ case BuiltinProc_expand_values: {
Type *type = base_type(operand->type);
if (!is_type_struct(type) && !is_type_array(type)) {
gbString type_str = type_to_string(operand->type);