diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-08-19 14:21:27 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-08-19 14:21:27 +0200 |
commit | 34b22e012350186925e513f34b1292858a81c932 (patch) | |
tree | f1c366cc6c07578183408c3605a91a847859d2ec /src/libexpr/common-eval-args.cc | |
parent | 8a97b11374c5165d3602648c5c0327f103072105 (diff) |
Change option descriptions to Markdown
Diffstat (limited to 'src/libexpr/common-eval-args.cc')
-rw-r--r-- | src/libexpr/common-eval-args.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/common-eval-args.cc b/src/libexpr/common-eval-args.cc index 6b48ead1f..10c1a6975 100644 --- a/src/libexpr/common-eval-args.cc +++ b/src/libexpr/common-eval-args.cc @@ -29,7 +29,7 @@ MixEvalArgs::MixEvalArgs() addFlag({ .longName = "include", .shortName = 'I', - .description = "add a path to the list of locations used to look up <...> file names", + .description = "add a path to the list of locations used to look up `<...>` file names", .labels = {"path"}, .handler = {[&](std::string s) { searchPath.push_back(s); }} }); |