diff options
| author | datdenkikniet <jcdra1@gmail.com> | 2023-04-15 14:43:40 +0200 |
|---|---|---|
| committer | datdenkikniet <jcdra1@gmail.com> | 2023-04-15 14:43:40 +0200 |
| commit | c6f4b834c184275298fabaae7b5bd70efe54b29d (patch) | |
| tree | bc1421b6a912c1b31a016c8db921c931a5310cd9 /xtask/src/argument_parsing.rs | |
| parent | feb00a9755ae8f96c8b761f288a6dad2eb41c5b1 (diff) | |
Fix fmt
Diffstat (limited to 'xtask/src/argument_parsing.rs')
| -rw-r--r-- | xtask/src/argument_parsing.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xtask/src/argument_parsing.rs b/xtask/src/argument_parsing.rs index 7028017..3ee9e34 100644 --- a/xtask/src/argument_parsing.rs +++ b/xtask/src/argument_parsing.rs @@ -306,9 +306,9 @@ pub enum Commands { pub struct FormatOpt { #[clap(flatten)] pub package: PackageOpt, - /// Apply formatting fixes immediately. + /// Check-only, do not apply formatting fixes. #[clap(short, long)] - pub apply: bool, + pub check: bool, } #[derive(Args, Debug, Clone)] |
