diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-01-13 14:18:04 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2021-01-13 14:18:04 +0100 |
commit | 3da9a9241cb9f8c284426c220ea285398d0328dd (patch) | |
tree | 76d285b2ff05458958a69618b153ec094c0ae49d /src/libmain/common-args.hh | |
parent | 4e9cec79bf5302108a031b3910f63baccf719eb5 (diff) |
Convert option descriptions to Markdown
Diffstat (limited to 'src/libmain/common-args.hh')
-rw-r--r-- | src/libmain/common-args.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libmain/common-args.hh b/src/libmain/common-args.hh index a4de3dccf..47f341619 100644 --- a/src/libmain/common-args.hh +++ b/src/libmain/common-args.hh @@ -16,7 +16,7 @@ struct MixDryRun : virtual Args MixDryRun() { - mkFlag(0, "dry-run", "show what this command would do without doing it", &dryRun); + mkFlag(0, "dry-run", "Show what this command would do without doing it.", &dryRun); } }; @@ -26,7 +26,7 @@ struct MixJSON : virtual Args MixJSON() { - mkFlag(0, "json", "produce JSON output", &json); + mkFlag(0, "json", "Produce output in JSON format, suitable for consumption by another program.", &json); } }; |