aboutsummaryrefslogtreecommitdiff
path: root/args.hxx
diff options
context:
space:
mode:
authorTaylor C. Richberger <tcr@absolute-performance.com>2016-05-07 12:30:55 -0600
committerTaylor C. Richberger <tcr@absolute-performance.com>2016-05-07 12:30:55 -0600
commit63b56c8afbb96e17b4eef9276a048509415dfe0a (patch)
treebb43fa2c91df7b92457c5c27fee652e14364c208 /args.hxx
parentbump version number (diff)
downloadargs.hxx-63b56c8afbb96e17b4eef9276a048509415dfe0a.tar.xz
improve documentation
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)) {}