From 3a937ace512816135065366581f4bd2b8f40b2ed Mon Sep 17 00:00:00 2001 From: Harry Prins <26745575+harryvederci@users.noreply.github.com> Date: Thu, 29 Oct 2020 08:45:04 +0000 Subject: [PATCH] Fix typo --- src/core/table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/table.c b/src/core/table.c index 51ca2f03..beac532a 100644 --- a/src/core/table.c +++ b/src/core/table.c @@ -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); }