aboutsummaryrefslogtreecommitdiff
path: root/cmd.ha
diff options
context:
space:
mode:
Diffstat (limited to 'cmd.ha')
-rw-r--r--cmd.ha4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd.ha b/cmd.ha
index c836f50..88579a6 100644
--- a/cmd.ha
+++ b/cmd.ha
@@ -93,7 +93,7 @@ fn show(cfg: config, tasks: []task, a: arguments) (void | task | error) = {
// if no args, print all
if (len(args) == 0) {
for (const t .. tasks) {
- fmt::println(t.content)!;
+ fmt::print(t.content)!;
};
return;
};
@@ -105,7 +105,7 @@ fn show(cfg: config, tasks: []task, a: arguments) (void | task | error) = {
} else {
return "No such task";
};
- fmt::println(t.content)!;
+ fmt::print(t.content)!;
};
};