From 9068d32e12750542b59418501ce1bd3835e92400 Mon Sep 17 00:00:00 2001 From: Ben Burdette Date: Wed, 25 May 2022 12:55:58 -0600 Subject: [PATCH] remove parens from repl help --- src/libcmd/repl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcmd/repl.cc b/src/libcmd/repl.cc index 993dcd634..458e824c5 100644 --- a/src/libcmd/repl.cc +++ b/src/libcmd/repl.cc @@ -500,7 +500,7 @@ bool NixRepl::processLine(std::string line) << " :bt Show trace stack\n" << " :st Show current trace\n" << " :st Change to another trace in the stack\n" - << " :c Go until end of program, exception, or builtins.break().\n" + << " :c Go until end of program, exception, or builtins.break\n" << " :s Go one step\n" ; }