From 0319be27ea6f9f909233c7befa02a7d9f37d03db Mon Sep 17 00:00:00 2001 From: dzaima Date: Sat, 29 Jun 2024 02:59:15 +0300 Subject: [PATCH] =?UTF-8?q?fix=20bad=20error=20message=20on=20/=E2=81=BC3?= =?UTF-8?q?=E2=80=BF3=E2=A5=8A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/builtins/slash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builtins/slash.c b/src/builtins/slash.c index 27357e79..228552f7 100644 --- a/src/builtins/slash.c +++ b/src/builtins/slash.c @@ -845,7 +845,7 @@ B slash_c2(B t, B w, B x) { } B slash_im(B t, B x) { - if (!isArr(x) || RNK(x)!=1) thrM("/⁼: Argument must be an array"); + if (!isArr(x) || RNK(x)!=1) thrM("/⁼: Argument must be a list"); u8 xe = TI(x,elType); usz xia = IA(x); if (xia==0) { decG(x); return emptyIVec(); }