aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/common-eval-args.cc
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2020-08-19 14:21:27 +0200
committerEelco Dolstra <edolstra@gmail.com>2020-08-19 14:21:27 +0200
commit34b22e012350186925e513f34b1292858a81c932 (patch)
treef1c366cc6c07578183408c3605a91a847859d2ec /src/libexpr/common-eval-args.cc
parent8a97b11374c5165d3602648c5c0327f103072105 (diff)
Change option descriptions to Markdown
Diffstat (limited to 'src/libexpr/common-eval-args.cc')
-rw-r--r--src/libexpr/common-eval-args.cc2
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); }}
});