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/str.c | |
parent | 8e3ed7630c7383869b6e16b494d4288c4e094dd3 (diff) | |
download | uwu-lang-6ec67846ffadb5bd1be13d5a7ea3abcf67f1c536.tar.xz |
Redesign function names
Diffstat (limited to 'std/str.c')
-rw-r--r-- | std/str.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,5 +32,5 @@ UwUVMValue uwu_cat(UwUVMArgs *args) UwUVMValue uwu_is(UwUVMArgs *args) { - return uwuutil_is_type(":str:is", args, &uwustr_type); + return uwuutil_is_type("str.is", args, &uwustr_type); } |