diff options
author | mqy <meng.qingyou@gmail.com> | 2020-12-18 05:15:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-17 13:15:27 -0800 |
commit | 05192553f434d10c5f585aeb6a07a55a6ac702a5 (patch) | |
tree | a14138600c5d0a841c728fbc681abe2edd850ca0 /src/idl_parser.cpp | |
parent | f2511d7d49d35a9a3069600d887261cde74bdd32 (diff) | |
download | flatbuffers-05192553f434d10c5f585aeb6a07a55a6ac702a5.tar.gz flatbuffers-05192553f434d10c5f585aeb6a07a55a6ac702a5.tar.bz2 flatbuffers-05192553f434d10c5f585aeb6a07a55a6ac702a5.zip |
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
Diffstat (limited to 'src/idl_parser.cpp')
-rw-r--r-- | src/idl_parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/idl_parser.cpp b/src/idl_parser.cpp index a32c93c3..015a7112 100644 --- a/src/idl_parser.cpp +++ b/src/idl_parser.cpp @@ -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; |