minor usage fix

This commit is contained in:
CPunch 2023-05-28 20:57:53 -05:00 committed by cpunch
parent 9537a2c7b8
commit 7b1bd1c9fc
1 changed files with 2 additions and 2 deletions

4
main.c
View File

@ -192,8 +192,8 @@ void printUsage(const char *name)
printf("available options are:\n"
"-c <in> <out>\tcompile <in> and dump to <out>\n"
"-l <in>\t\tload dump from <in>\n"
"-s <in...>\t\tcompile and run <in...> script(s)\n"
"-r\t\t\tstart the repl\n\n");
"-s <in...>\tcompile and run <in...> script(s)\n"
"-r\t\tstart the repl\n\n");
}
int main(int argc, char *const argv[])