From fbe351a85b7845af5695a61dba22046cd9f2d8dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Wed, 23 Nov 2016 03:36:48 +0100 Subject: [PATCH] Improved and reformatted help texts. --- app/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/main.cpp b/app/main.cpp index 2541cee..74c88ab 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -10,9 +10,9 @@ int main(int argc, char **argv) po::options_description description("Allowed options"); description.add_options() - ("help,h", "display this help message") - ("version,v", "Display version information.") - ("input,i", po::value>(), "Specify the PDDL or SAS input file."); + ("help,h", "Display this help message") + ("version,v", "Display version information") + ("input,i", po::value>(), "Input files"); po::positional_options_description positionalOptionsDescription; positionalOptionsDescription.add("input", -1);