From f4597b0bee92e308b69043465b57aac6a57ba6ad Mon Sep 17 00:00:00 2001 From: Maxwell Ruben Date: Fri, 8 Mar 2024 23:01:20 -0500 Subject: [PATCH] Fix REPL help message The last line of the help message was missing a newline character. --- CLI/Repl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CLI/Repl.cpp b/CLI/Repl.cpp index 84e4a654..d1122ae6 100644 --- a/CLI/Repl.cpp +++ b/CLI/Repl.cpp @@ -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)