diff --git a/docs/cli-usage.md b/docs/cli-usage.md index 9dc3725..2bbb716 100644 --- a/docs/cli-usage.md +++ b/docs/cli-usage.md @@ -37,7 +37,7 @@ djinni \ | `--help` | Print help | | `--version` | Print version | | `--idl ` | The IDL file with the type definitions, typically with extension `.djinni`. | -| `--idl-include-path ...` | An include path to search for Djinni @import directives. Can specify multiple paths. | +| `--idl-include-path ...` | An include path to search for Djinni `@import` directives. Can specify multiple paths. | ### Java | Argument | Description | @@ -50,7 +50,7 @@ djinni \ | `--java-generate-interfaces ` | Whether Java interfaces should be used instead of abstract classes where possible (default: `false`). | | `--java-nullable-annotation ` | Java annotation (`@Nullable`) to place on all fields and return values that are optional | | `--java-nonnull-annotation ` | Java annotation (`@Nonnull`) to place on all fields and return values that are not optional | -| `--java-implement-android-os-parcelable ` | all generated java classes will implement the interface android.os.Parcelable | +| `--java-implement-android-os-parcelable ` | all generated java classes will implement the interface `android.os.Parcelable` | | `--java-use-final-for-record ` | Whether generated Java classes for records should be marked `final` (default: `true`). | ### C++ @@ -59,13 +59,13 @@ djinni \ | -------- | ----------- | | `--cpp-out ` | The output folder for C++ files (Generator disabled if unspecified). | | `--cpp-header-out ` | The output folder for C++ header files (default: the same as `--cpp-out`). | -| `--cpp-include-prefix ` | The prefix for #includes of header files from C++ files. | +| `--cpp-include-prefix ` | The prefix for `#includes` of header files from C++ files. | | `--cpp-namespace ...` | The namespace name to use for generated C++ classes. | | `--cpp-ext ` | The filename extension for C++ files (default: `cpp`). | | `--hpp-ext ` | The filename extension for C++ header files (default: `hpp`). | | `--cpp-optional-template