Skip to content

Commit

Permalink
Fix REPL help message formatting (#1186)
Browse files Browse the repository at this point in the history
The last line of the help message was missing a newline character. I
feel a little silly creating a pull request for a 2 character change but
it was bothering me. Fixes #1185
  • Loading branch information
mxruben authored Mar 11, 2024
1 parent ae459a0 commit 209fd50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CLI/Repl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,7 @@ static void displayHelp(const char* argv0)
printf(" --profile[=N]: profile the code using N Hz sampling (default 10000) and output results to profile.out\n");
printf(" --timetrace: record compiler time tracing information into trace.json\n");
printf(" --codegen: execute code using native code generation\n");
printf(" --program-args,-a: declare start of arguments to be passed to the Luau program");
printf(" --program-args,-a: declare start of arguments to be passed to the Luau program\n");
}

static int assertionHandler(const char* expr, const char* file, int line, const char* function)
Expand Down

0 comments on commit 209fd50

Please sign in to comment.