fix(string): return value (bad copy and paste)

This commit is contained in:
Edo 2022-11-26 16:26:52 +00:00 committed by GitHub
parent d2f986e08e
commit 23af90bb71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,7 +42,7 @@ namespace utils::string
return static_cast<char>(std::tolower(input)); return static_cast<char>(std::tolower(input));
}); });
return text; return result;
} }
std::string to_upper(const std::string& text) std::string to_upper(const std::string& text)