]> git.lizzy.rs Git - uwu-lang.git/blobdiff - std/nil.c
Redesign function names
[uwu-lang.git] / std / nil.c
index 52a2872337dea0da7494b72dbba8bc70d3ed45bc..cb27dbb52f5d12a8ef76e0d303352779a8125430 100644 (file)
--- 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);
 }