From 8975be082bcc43fc2bc2133c891f91f91532f9bd Mon Sep 17 00:00:00 2001 From: dzaima Date: Sun, 9 Jul 2023 15:58:31 +0300 Subject: [PATCH] =?UTF-8?q?fix=20=E2=80=A2ns.Get=20error=20message?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/builtins/sysfn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builtins/sysfn.c b/src/builtins/sysfn.c index 1a238fbd..46b98768 100644 --- a/src/builtins/sysfn.c +++ b/src/builtins/sysfn.c @@ -1226,7 +1226,7 @@ B nKeys_c1(B t, B x) { return r.b; } B nGet_c2(B t, B w, B x) { - if (!isNsp(w)) thrM("•ns.Has: 𝕨 must be a namespace"); + if (!isNsp(w)) thrM("•ns.Get: 𝕨 must be a namespace"); vfyStr(x, "•ns.Get", "𝕩"); x = name_normalize(x); B r = ns_getNU(w, x, true);