Skip to content

Commit d1d4b4e

Browse files
committed
Change the ordering of commands to short first
This is mostly for alignment since short commands/flags are one characters while the longer ones are varied.
1 parent d5d03f6 commit d1d4b4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ static void handle_quit(struct LacoState* laco, const char** arguments) {
1717

1818
static void handle_help(struct LacoState* laco, const char** arguments) {
1919
puts(" Commands available:\n");
20-
puts(" :quit, :q Exit laco");
21-
puts(" :help, :? Display this list of commands");
20+
puts(" :q, :quit Exit laco");
21+
puts(" :?, :help Display this list of commands");
2222
puts(" :info <name> Show information on given function");
2323
}
2424

0 commit comments

Comments
 (0)