diff options
author | Oleg Morozenkov <omorozenkov@gmail.com> | 2015-08-04 09:17:19 +0300 |
---|---|---|
committer | Oleg Morozenkov <omorozenkov@gmail.com> | 2015-08-04 09:17:19 +0300 |
commit | d92c8909d4dbfc3919c7353b74d2ff3a5ddfcee2 (patch) | |
tree | 13f79edf9b7483648befb881add16ca623171ea5 /include/tgbot/tools/StringTools.h | |
parent | 99072def67e54d664edd96b9c0f124c4f09cedee (diff) |
Fix StringTools
Diffstat (limited to 'include/tgbot/tools/StringTools.h')
-rw-r--r-- | include/tgbot/tools/StringTools.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tgbot/tools/StringTools.h b/include/tgbot/tools/StringTools.h index a8b4af1..6c01575 100644 --- a/include/tgbot/tools/StringTools.h +++ b/include/tgbot/tools/StringTools.h @@ -33,14 +33,14 @@ namespace StringTools { /** - * Checks if first string is starting with second string and vice-versa + * Checks if first string is starting with second string * @param str1 First string * @param str2 Second string */ bool startsWith(const std::string& str1, const std::string& str2); /** - * Checks if first string is ending with second string and vice-versa + * Checks if first string is ending with second string * @param str1 First string * @param str2 Second string */ |