aboutsummaryrefslogtreecommitdiff
path: root/std/bool.c
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2021-12-30 14:28:19 +0100
committerElias Fleckenstein <eliasfleckenstein@web.de>2021-12-30 14:28:19 +0100
commit09d398c748c2707918c9f531b91d161b08cb1163 (patch)
tree7cdbf4b8d01c829b1cc7508b4f051b371cac20ec /std/bool.c
parent82bd4d7d640039f2e073f1de883d55131e1d5b38 (diff)
downloaduwu-lang-09d398c748c2707918c9f531b91d161b08cb1163.tar.xz
Code format
Diffstat (limited to 'std/bool.c')
-rw-r--r--std/bool.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/std/bool.c b/std/bool.c
index cb4082b..80aade5 100644
--- a/std/bool.c
+++ b/std/bool.c
@@ -55,7 +55,7 @@ UwUVMValue uwu_equal(UwUVMArgs *args)
for (size_t i = 1; i < args->num; i++)
if (get_bool_arg(args, i) != value)
return uwubool_create(false);
-
+
return uwubool_create(true);
}
@@ -71,7 +71,7 @@ UwUVMValue uwu_true(UwUVMArgs *args)
{
if (args->num != 0)
error("error: :bool:true does not take any arguments\n");
-
+
return uwubool_create(true);
}