From df90cf5d7a9a5c69c3eecc2cc844434d461ed5bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Fri, 21 Feb 2020 19:40:02 +0100 Subject: [PATCH] [yul-phaser] Phaser: Make all option descriptions consistenly end with a full stop --- tools/yulPhaser/Phaser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/yulPhaser/Phaser.cpp b/tools/yulPhaser/Phaser.cpp index c06533c21..ba99f3544 100644 --- a/tools/yulPhaser/Phaser.cpp +++ b/tools/yulPhaser/Phaser.cpp @@ -180,8 +180,8 @@ Phaser::CommandLineDescription Phaser::buildCommandLineDescription() po::options_description generalDescription("GENERAL", lineLength, minDescriptionLength); generalDescription.add_options() ("help", "Show help message and exit.") - ("input-file", po::value()->required(), "Input file") - ("seed", po::value(), "Seed for the random number generator") + ("input-file", po::value()->required(), "Input file.") + ("seed", po::value(), "Seed for the random number generator.") ; keywordDescription.add(generalDescription);