From 69f0fe004da1c220e5df57e57b663904a52180ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20Pospi=CC=81s=CC=8Cil?= Date: Fri, 26 Jan 2024 14:36:56 +0100 Subject: [PATCH] Fix typo in destructuring --- src/core/specials.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/specials.c b/src/core/specials.c index f54df609..bae6e4a2 100644 --- a/src/core/specials.c +++ b/src/core/specials.c @@ -149,7 +149,7 @@ static int destructure(JanetCompiler *c, JanetTable *attr) { switch (janet_type(left)) { default: - janetc_error(c, janet_formatc("unexpected type in destruction, got %v", left)); + janetc_error(c, janet_formatc("unexpected type in destructuring, got %v", left)); return 1; case JANET_SYMBOL: /* Leaf, assign right to left */