Skip to content

Commit d5d03f6

Browse files
committed
Remove tab characters from help flags
1 parent fdd0878 commit d5d03f6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/commands.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ 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 \tExit laco");
21-
puts(" :help, :? \tDisplay this list of commands");
22-
puts(" :info <name> \tShow information on given function");
20+
puts(" :quit, :q Exit laco");
21+
puts(" :help, :? Display this list of commands");
22+
puts(" :info <name> Show information on given function");
2323
}
2424

2525
static void handle_debug_info(struct LacoState* laco,

src/flags.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ static void handle_version(LacoState* laco, const char** arguments) {
2020
static void handle_help(LacoState* laco, const char** arguments) {
2121
puts("A better REPL for Lua.\n");
2222
puts("Usage: laco [options]\n");
23-
puts("-h | --help \tPrint this help screen");
24-
puts("-v | --version \tPrint current version");
23+
puts("-h | --help Print this help screen");
24+
puts("-v | --version Print current version");
2525

2626
laco_kill(laco, 0, NULL);
2727
}

0 commit comments

Comments
 (0)