Skip to content

Commit 7ea1cb0

Browse files
committed
Change flag separation from | to ,
1 parent d1d4b4e commit 7ea1cb0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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 Print this help screen");
24-
puts("-v | --version Print 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)