From f626bdf9c7f77fa64ac5db4ed12620ff5cb056e1 Mon Sep 17 00:00:00 2001 From: Martchus Date: Wed, 1 Mar 2017 18:18:54 +0100 Subject: [PATCH] Fix typos --- CMakeLists.txt | 2 +- application/argumentparser.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4b5c241..0d95905 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -119,7 +119,7 @@ set(META_APP_URL "https://github.com/${META_APP_AUTHOR}/${META_PROJECT_NAME}") set(META_APP_DESCRIPTION "Common C++ classes and routines used by my applications such as argument parser, IO and conversion utilities") set(META_VERSION_MAJOR 4) set(META_VERSION_MINOR 6) -set(META_VERSION_PATCH 0) +set(META_VERSION_PATCH 1) # find required 3rd party libraries include(3rdParty) diff --git a/application/argumentparser.h b/application/argumentparser.h index 17cdc13..f1dfac3 100644 --- a/application/argumentparser.h +++ b/application/argumentparser.h @@ -423,9 +423,9 @@ inline const std::vector &Argument::valueNames() const * \brief Sets the names of the requried values. These names will be used * when printing information about the argument. * - * If the number of value names is higher then the number of requried values + * If the number of value names is higher than the number of requried values * the additional value names will be ignored. - * If the number of value names is lesser then the number of requried values + * If the number of value names is lesser than the number of requried values * generic values will be used for the missing names. * * \sa appendValueName()