From ad7f6b960c77264b8f4d4df1d6e902930d04e325 Mon Sep 17 00:00:00 2001 From: luzpaz Date: Thu, 2 Feb 2017 13:56:42 -0500 Subject: [PATCH 1/2] fix --log-file description grammar --- src/App/Application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Application.cpp b/src/App/Application.cpp index 8cdf9610aa..d4590ea495 100644 --- a/src/App/Application.cpp +++ b/src/App/Application.cpp @@ -1706,7 +1706,7 @@ void Application::ParseOptions(int ac, char ** av) config.add_options() //("write-log,l", value(), "write a log file") ("write-log,l", descr.c_str()) - ("log-file", value(), "Unlike to --write-log this allows to log to an arbitrary file") + ("log-file", value(), "Unlike --write-log this allows logging to an arbitrary file") ("user-cfg,u", value(),"User config file to load/save user settings") ("system-cfg,s", value(),"Systen config file to load/save system settings") ("run-test,t", value() ,"Test case - or 0 for all") From bb5c01ba844cc2fdc6d7eee3f9ca8f005d7f88d1 Mon Sep 17 00:00:00 2001 From: luzpaz Date: Thu, 2 Feb 2017 14:01:10 -0500 Subject: [PATCH 2/2] typo r/scema/scheme/ --- src/App/Application.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/App/Application.cpp b/src/App/Application.cpp index d4590ea495..1e47ce9605 100644 --- a/src/App/Application.cpp +++ b/src/App/Application.cpp @@ -1742,9 +1742,9 @@ void Application::ParseOptions(int ac, char ** av) ("btn", boost::program_options::value< string >(), "set the X-Window button color") ("name", boost::program_options::value< string >(), "set the X-Window name") ("title", boost::program_options::value< string >(), "set the X-Window title") - ("visual", boost::program_options::value< string >(), "set the X-Window to color scema") - ("ncols", boost::program_options::value< int >(), "set the X-Window to color scema") - ("cmap", "set the X-Window to color scema") + ("visual", boost::program_options::value< string >(), "set the X-Window to color scheme") + ("ncols", boost::program_options::value< int >(), "set the X-Window to color scheme") + ("cmap", "set the X-Window to color scheme") #if defined(FC_OS_MACOSX) ("psn", boost::program_options::value< string >(), "process serial number") #endif