From 80c9464f1e1e97a26e642fd39057bf83731ee82b Mon Sep 17 00:00:00 2001 From: Benjamin Bouvier Date: Tue, 8 Aug 2023 16:00:20 +0200 Subject: [PATCH] chore: fix typo in cargo xtask kotlin doc comment (#2387) --- xtask/src/kotlin.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xtask/src/kotlin.rs b/xtask/src/kotlin.rs index 83e9cfb40..0e850b270 100644 --- a/xtask/src/kotlin.rs +++ b/xtask/src/kotlin.rs @@ -47,6 +47,7 @@ enum KotlinCommand { BuildAndroidLibrary { #[clap(value_enum, long)] package: Package, + /// Build with the release profile #[clap(long)] release: bool, @@ -59,7 +60,7 @@ enum KotlinCommand { #[clap(long)] only_target: Option, - /// Move the generated files into the given src direct + /// Move the generated files into the given src directory #[clap(long)] src_dir: PathBuf, },