Fix typos

This commit is contained in:
Martchus 2017-03-01 18:18:54 +01:00
parent 88196b8076
commit f626bdf9c7
2 changed files with 3 additions and 3 deletions

View File

@ -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)

View File

@ -423,9 +423,9 @@ inline const std::vector<const char *> &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()