From 1941a383769cea35843d5b7b9de1ac0c543760b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Audiger?= <31616285+jaudiger@users.noreply.github.com> Date: Sat, 6 Jul 2024 06:09:02 +0200 Subject: [PATCH] fix: 'buiilding' -> 'building' (#72) Signed-off-by: jaudiger --- crates/brioche/src/build.rs | 2 +- crates/brioche/src/install.rs | 2 +- crates/brioche/src/run.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/brioche/src/build.rs b/crates/brioche/src/build.rs index 682adf0..d1ec830 100644 --- a/crates/brioche/src/build.rs +++ b/crates/brioche/src/build.rs @@ -20,7 +20,7 @@ pub struct BuildArgs { #[arg(short, long)] output: Option, - /// Check the project before buiilding + /// Check the project before building #[arg(long)] check: bool, diff --git a/crates/brioche/src/install.rs b/crates/brioche/src/install.rs index 224bd2f..9a5a75c 100644 --- a/crates/brioche/src/install.rs +++ b/crates/brioche/src/install.rs @@ -15,7 +15,7 @@ pub struct InstallArgs { #[arg(short, long, default_value = "default")] export: String, - /// Check the project before buiilding + /// Check the project before building #[arg(long)] check: bool, } diff --git a/crates/brioche/src/run.rs b/crates/brioche/src/run.rs index 3ded392..9ef30d1 100644 --- a/crates/brioche/src/run.rs +++ b/crates/brioche/src/run.rs @@ -23,7 +23,7 @@ pub struct RunArgs { #[arg(short, long)] quiet: bool, - /// Check the project before buiilding + /// Check the project before building #[arg(long)] check: bool,