diff options
author | Ben Burdette <bburdette@protonmail.com> | 2022-04-08 16:34:20 -0600 |
---|---|---|
committer | Ben Burdette <bburdette@protonmail.com> | 2022-04-08 16:34:20 -0600 |
commit | f5757a0804e0278e1ad2ac7a46adeb3dc96ce034 (patch) | |
tree | 153aa78e90f1e7516333b66de70f674339eba244 | |
parent | 3aaf02839f1491e6d766661209904f74efde8970 (diff) |
revise command help
-rw-r--r-- | src/libcmd/repl.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libcmd/repl.cc b/src/libcmd/repl.cc index 07e433293..5c25183cc 100644 --- a/src/libcmd/repl.cc +++ b/src/libcmd/repl.cc @@ -497,7 +497,8 @@ bool NixRepl::processLine(std::string line) << " :d <cmd> Debug mode commands\n" << " :d stack Show trace stack\n" << " :d env Show env stack\n" - << " :d show <idx> Show current trace, or change to call stack index\n" + << " :d show Show current trace\n" + << " :d show <idx> Change to another trace in the stack\n" << " :d go Go until end of program, exception, or builtins.break().\n" << " :d step Go one step\n" ; |