1
0
mirror of https://github.com/janet-lang/janet synced 2024-09-27 22:58:13 +00:00
This commit is contained in:
Harry Prins 2020-10-29 08:45:04 +00:00 committed by GitHub
parent 2891d2b260
commit 3a937ace51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -256,7 +256,7 @@ static void janet_table_mergekv(JanetTable *table, const JanetKV *kvs, int32_t c
}
}
/* Merge a table other into another table */
/* Merge a table into another table */
void janet_table_merge_table(JanetTable *table, JanetTable *other) {
janet_table_mergekv(table, other->data, other->capacity);
}