Skip to content

Commit 9dd6f7f

Browse files
committed
Fix bug in subcommand help output
1 parent 8004d02 commit 9dd6f7f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

help.dylan

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,9 +256,8 @@ define function subcommand-columns
256256
add!(docs, subcmd.command-help);
257257
if (subcmd.has-subcommands?)
258258
loop(subcmd.command-subcommands, concatenate(indent, " "));
259-
else
260-
loop(tail(subs), indent)
261259
end;
260+
loop(tail(subs), indent)
262261
end;
263262
end iterate;
264263
values(names, docs)

0 commit comments

Comments
 (0)