Fix missing spaces in flatc help text (#7612)
* Fix error in --json-nested-bytes help text Correct “bytesin” to “bytes in” * Fix missing space in --no-leak-private-annotation help text
This commit is contained in:
parent
4de2814c7b
commit
2facfeec7e
|
@ -217,14 +217,14 @@ const static FlatCOption options[] = {
|
||||||
"Allows (de)serialization of JSON text in the Object API. (requires "
|
"Allows (de)serialization of JSON text in the Object API. (requires "
|
||||||
"--gen-object-api)." },
|
"--gen-object-api)." },
|
||||||
{ "", "json-nested-bytes", "",
|
{ "", "json-nested-bytes", "",
|
||||||
"Allow a nested_flatbuffer field to be parsed as a vector of bytes"
|
"Allow a nested_flatbuffer field to be parsed as a vector of bytes "
|
||||||
"in JSON, which is unsafe unless checked by a verifier afterwards." },
|
"in JSON, which is unsafe unless checked by a verifier afterwards." },
|
||||||
{ "", "ts-flat-files", "",
|
{ "", "ts-flat-files", "",
|
||||||
"Only generated one typescript file per .fbs file." },
|
"Only generated one typescript file per .fbs file." },
|
||||||
{ "", "annotate", "SCHEMA",
|
{ "", "annotate", "SCHEMA",
|
||||||
"Annotate the provided BINARY_FILE with the specified SCHEMA file." },
|
"Annotate the provided BINARY_FILE with the specified SCHEMA file." },
|
||||||
{ "", "no-leak-private-annotation", "",
|
{ "", "no-leak-private-annotation", "",
|
||||||
"Prevents multiple type of annotations within a Fbs SCHEMA file."
|
"Prevents multiple type of annotations within a Fbs SCHEMA file. "
|
||||||
"Currently this is required to generate private types in Rust" },
|
"Currently this is required to generate private types in Rust" },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue