diff options
author | Guillaume Maudoux <guillaume.maudoux@tweag.io> | 2022-03-07 11:33:03 +0100 |
---|---|---|
committer | Guillaume Maudoux <guillaume.maudoux@tweag.io> | 2022-03-07 11:33:03 +0100 |
commit | 13c4dc65327c9654c47e6d80c0f4e1797b999f97 (patch) | |
tree | 7ec88137a4bdc971522920a27c046082e32c1d2d /src/nix/main.cc | |
parent | 1b5a8db148dd4403c64bc058ce1a4a5e46d52031 (diff) |
more fixes
Diffstat (limited to 'src/nix/main.cc')
-rw-r--r-- | src/nix/main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/main.cc b/src/nix/main.cc index 0c6286686..3ba7ce8b6 100644 --- a/src/nix/main.cc +++ b/src/nix/main.cc @@ -196,7 +196,7 @@ static void showHelp(std::vector<std::string> subcommand, MultiCommand & topleve if (!attr) throw UsageError("Nix has no subcommand '%s'", concatStringsSep("", subcommand)); - auto markdown = state.forceString(*attr->value, noPos, "While evaluating the lowdown help text"); + auto markdown = state.forceString(*attr->value, noPos, "While evaluating the lowdown help text: "); RunPager pager; std::cout << renderMarkdownToTerminal(markdown) << "\n"; |