Fix the decompress -d argument description

This commit is contained in:
Dan Martinez 2022-08-11 14:17:29 -07:00
parent aed93d9406
commit 39ea378cc5
2 changed files with 2 additions and 1 deletions

View File

@ -85,6 +85,7 @@ Categories Used:
- Update dependencies [\#253](https://github.com/ouch-org/ouch/pull/253) ([Crypto-Spartan](https://github.com/Crypto-Spartan))
- Update dependencies [\#257](https://github.com/ouch-org/ouch/pull/257) ([Artturin](https://github.com/Artturin))
- Add pull request template [\#263](https://github.com/ouch-org/ouch/pull/263) ([figsoda](https://github.com/figsoda))
- Clean up the description for the `-o/--dir` argument to `decompress` [\#264](https://github.com/ouch-org/ouch/pull/264) ([hivehand](https://github.com/hivehand))
### New Contributors

View File

@ -71,7 +71,7 @@ pub enum Subcommand {
#[clap(required = true, min_values = 1)]
files: Vec<PathBuf>,
/// Choose to files in a directory other than the current
/// Place results in a directory other than the current one.
#[clap(short = 'd', long = "dir", value_hint = ValueHint::DirPath)]
output_dir: Option<PathBuf>,
},