Fix typos in usage/comments; Make rust generator respect to --filenam… (#6342)

* Fix typos in usage/comments; Make rust generator respect to --filename-suffix

* run clang format
This commit is contained in:
mqy
2020-12-18 05:15:27 +08:00
committed by GitHub
parent f2511d7d49
commit 05192553f4
3 changed files with 7 additions and 6 deletions

View File

@@ -92,7 +92,7 @@ static bool IsLowerSnakeCase(const std::string &str) {
return true;
}
// Convert an underscore_based_indentifier in to camelCase.
// Convert an underscore_based_identifier in to camelCase.
// Also uppercases the first character if first is true.
std::string MakeCamel(const std::string &in, bool first) {
std::string s;