aboutsummaryrefslogtreecommitdiff
path: root/std/nil.c
diff options
context:
space:
mode:
Diffstat (limited to 'std/nil.c')
-rw-r--r--std/nil.c4
1 files changed, 2 insertions, 2 deletions
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);
}