From 2facfeec7e0476e21965a5dc1c9ca4daa08d6706 Mon Sep 17 00:00:00 2001 From: Ben Beasley Date: Tue, 8 Nov 2022 12:59:48 -0500 Subject: [PATCH] Fix missing spaces in flatc help text (#7612) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fix error in --json-nested-bytes help text Correct “bytesin” to “bytes in” * Fix missing space in --no-leak-private-annotation help text --- src/flatc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/flatc.cpp b/src/flatc.cpp index 8f6ef0041..6db694556 100644 --- a/src/flatc.cpp +++ b/src/flatc.cpp @@ -217,14 +217,14 @@ const static FlatCOption options[] = { "Allows (de)serialization of JSON text in the Object API. (requires " "--gen-object-api)." }, { "", "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." }, { "", "ts-flat-files", "", "Only generated one typescript file per .fbs file." }, { "", "annotate", "SCHEMA", "Annotate the provided BINARY_FILE with the specified SCHEMA file." }, { "", "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" }, };