From dccfb06d651b34d4b759594c6aee120afe359a54 Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Sun, 14 Jun 2020 17:13:54 +0200 Subject: [PATCH] Fix default --version help message capitalisation. (#476) --- include/CLI/App.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/CLI/App.hpp b/include/CLI/App.hpp index 54ac703..2c756d6 100644 --- a/include/CLI/App.hpp +++ b/include/CLI/App.hpp @@ -719,7 +719,7 @@ class App { version_ptr_ = add_flag_callback( flag_name, [versionString]() { throw(CLI::CallForVersion(versionString, 0)); }, - "display program version information and exit"); + "Display program version information and exit"); version_ptr_->configurable(false); } @@ -738,7 +738,7 @@ class App { version_ptr_ = add_flag_callback( flag_name, [vfunc]() { throw(CLI::CallForVersion(vfunc(), 0)); }, - "display program version information and exit"); + "Display program version information and exit"); version_ptr_->configurable(false); } -- libgit2 0.21.4