[yul-phaser] Phaser: Make all option descriptions consistenly end with a full stop

This commit is contained in:
Kamil Śliwak 2020-02-21 19:40:02 +01:00
parent ffc21632b6
commit df90cf5d7a

View File

@ -180,8 +180,8 @@ Phaser::CommandLineDescription Phaser::buildCommandLineDescription()
po::options_description generalDescription("GENERAL", lineLength, minDescriptionLength); po::options_description generalDescription("GENERAL", lineLength, minDescriptionLength);
generalDescription.add_options() generalDescription.add_options()
("help", "Show help message and exit.") ("help", "Show help message and exit.")
("input-file", po::value<string>()->required(), "Input file") ("input-file", po::value<string>()->required(), "Input file.")
("seed", po::value<uint32_t>(), "Seed for the random number generator") ("seed", po::value<uint32_t>(), "Seed for the random number generator.")
; ;
keywordDescription.add(generalDescription); keywordDescription.add(generalDescription);