aboutsummaryrefslogtreecommitdiff
path: root/args.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'args.hxx')
-rw-r--r--args.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/args.hxx b/args.hxx
index e388aa6..3a43f18 100644
--- a/args.hxx
+++ b/args.hxx
@@ -227,7 +227,7 @@ namespace args
/** Specify a mixed single initializer-list of both short and long opts
*
- * This is the fancy one: `args::Matcher{'a'}`, or `args::Matcher{"foo"}`, or `args::Matcher{"foo", 'f', 'F', "FoO"}`
+ * This is the fancy one: args::Matcher{'a'}, or args::Matcher{"foo"}, or args::Matcher{"foo", 'f', 'F', "FoO"}
*/
Matcher(std::initializer_list<EitherOpt> in) :
shortOpts(EitherOpt::GetShort(in)), longOpts(EitherOpt::GetLong(in)) {}