From 6ec67846ffadb5bd1be13d5a7ea3abcf67f1c536 Mon Sep 17 00:00:00 2001 From: Elias Fleckenstein Date: Sat, 1 Jan 2022 17:43:11 +0100 Subject: Redesign function names --- std/nil.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'std/nil.c') diff --git a/std/nil.c b/std/nil.c index 52a2872..cb27dbb 100644 --- a/std/nil.c +++ b/std/nil.c @@ -4,11 +4,11 @@ UwUVMValue uwu_nil(UwUVMArgs *args) { - uwuutil_require_exact(":nil:nil", args, 0); + uwuutil_require_exact("nil.nil", args, 0); return uwunil_create(); } UwUVMValue uwu_is(UwUVMArgs *args) { - return uwuutil_is_type(":nil:is", args, &uwunil_type); + return uwuutil_is_type("nil.is", args, &uwunil_type); } -- cgit v1.2.3