Fixed: Typo

This commit is contained in:
Raevsky Rudolf 2022-11-17 00:25:57 +01:00 committed by GitHub
parent 85773e0926
commit 318064ccce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,14 +27,14 @@ struct TranslateImpl
const std::string & map_to) const std::string & map_to)
{ {
if (map_from.size() != map_to.size()) if (map_from.size() != map_to.size())
throw Exception("Second and trird arguments must be the same length", ErrorCodes::BAD_ARGUMENTS); throw Exception("Second and third arguments must be the same length", ErrorCodes::BAD_ARGUMENTS);
std::iota(map.begin(), map.end(), 0); std::iota(map.begin(), map.end(), 0);
for (size_t i = 0; i < map_from.size(); ++i) for (size_t i = 0; i < map_from.size(); ++i)
{ {
if (!isASCII(map_from[i]) || !isASCII(map_to[i])) if (!isASCII(map_from[i]) || !isASCII(map_to[i]))
throw Exception("Second and trird arguments must be ASCII strings", ErrorCodes::BAD_ARGUMENTS); throw Exception("Second and third arguments must be ASCII strings", ErrorCodes::BAD_ARGUMENTS);
map[map_from[i]] = map_to[i]; map[map_from[i]] = map_to[i];
} }
@ -125,7 +125,7 @@ struct TranslateUTF8Impl
auto map_to_size = UTF8::countCodePoints(reinterpret_cast<const UInt8 *>(map_to.data()), map_to.size()); auto map_to_size = UTF8::countCodePoints(reinterpret_cast<const UInt8 *>(map_to.data()), map_to.size());
if (map_from_size != map_to_size) if (map_from_size != map_to_size)
throw Exception("Second and trird arguments must be the same length", ErrorCodes::BAD_ARGUMENTS); throw Exception("Second and third arguments must be the same length", ErrorCodes::BAD_ARGUMENTS);
std::iota(map_ascii.begin(), map_ascii.end(), 0); std::iota(map_ascii.begin(), map_ascii.end(), 0);