aboutsummaryrefslogtreecommitdiff
path: root/std/nil.c
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2022-01-01 17:43:11 +0100
committerElias Fleckenstein <eliasfleckenstein@web.de>2022-01-01 17:43:11 +0100
commit6ec67846ffadb5bd1be13d5a7ea3abcf67f1c536 (patch)
treebaac675ac4183bf4927403391dd54ea5069af4a5 /std/nil.c
parent8e3ed7630c7383869b6e16b494d4288c4e094dd3 (diff)
downloaduwu-lang-6ec67846ffadb5bd1be13d5a7ea3abcf67f1c536.tar.xz
Redesign function names
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);
}