Clarify documentation: NUM → NUMBER.

This commit is contained in:
tastytea 2021-05-24 08:23:21 +02:00
parent 44ffeb07ec
commit 9c769f664d
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
2 changed files with 4 additions and 4 deletions

View File

@ -52,8 +52,8 @@ Use additional _PATTERN_ for matching. Can be used more than once.
*-a*, *--raw*::
Do not strip HTML before searching.
*-C* _NUM_, **context* _NUM_::
Print _NUM_ words of context around matches.
*-C* _NUMBER_, **context* _NUMBER_::
Print _NUMBER_ words of context around matches.
== USAGE

View File

@ -69,8 +69,8 @@ po::variables_map parse_options(int argc, char *argv[])
("raw,a",
translate("Do not strip HTML before searching.").str().data())
("context,C", po::value<std::uint64_t>()
->value_name(translate("NUM"))->default_value(0),
translate("Print NUM words of context around matches.").str().data())
->value_name(translate("NUMBER"))->default_value(0),
translate("Print NUMBER words of context around matches.").str().data())
;
po::options_description options_hidden("Hidden options");