aboutsummaryrefslogtreecommitdiff
path: root/std/bool.c
diff options
context:
space:
mode:
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);
}