reformat toCamelCase.

This commit is contained in:
Sophia Hadash 2021-08-23 15:02:56 +02:00 committed by SophiaHadash
parent c1d7f37a07
commit b9b3e35e09

View file

@ -552,13 +552,11 @@ namespace Utils
line[i] = Utils::String::toUpper(std::string(1, line[i]))[0]; line[i] = Utils::String::toUpper(std::string(1, line[i]))[0];
active = false; active = false;
} }
else { else
line[i] = Utils::String::toLower(std::string(1, line[i]))[0]; line[i] = Utils::String::toLower(std::string(1, line[i]))[0];
}
} }
else if (line[i] == ' ') { else if (line[i] == ' ')
active = true; active = true;
}
} }
return line; return line;