diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-01-01 17:43:11 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-01-01 17:43:11 +0100 |
commit | 6ec67846ffadb5bd1be13d5a7ea3abcf67f1c536 (patch) | |
tree | baac675ac4183bf4927403391dd54ea5069af4a5 /std/nil.c | |
parent | 8e3ed7630c7383869b6e16b494d4288c4e094dd3 (diff) | |
download | uwu-lang-6ec67846ffadb5bd1be13d5a7ea3abcf67f1c536.tar.xz |
Redesign function names
Diffstat (limited to 'std/nil.c')
-rw-r--r-- | std/nil.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); } |