From 39ea378cc5d4ba5d934bf47e0e5d925fb8b89a4c Mon Sep 17 00:00:00 2001 From: Dan Martinez Date: Thu, 11 Aug 2022 14:17:29 -0700 Subject: [PATCH 1/2] Fix the `decompress` `-d` argument description --- CHANGELOG.md | 1 + src/opts.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dafc97f..018daf0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/opts.rs b/src/opts.rs index b42b225..d27da0c 100644 --- a/src/opts.rs +++ b/src/opts.rs @@ -71,7 +71,7 @@ pub enum Subcommand { #[clap(required = true, min_values = 1)] files: Vec, - /// 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, }, From 9d4fc81281e2881871288a99b0de55c90601593c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20M=2E=20Bezerra?= Date: Fri, 12 Aug 2022 13:00:36 -0300 Subject: [PATCH 2/2] fix typo in CHANGELOG.md --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 018daf0..2cb4e72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -85,7 +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)) +- Clean up the description for the `-d/--dir` argument to `decompress` [\#264](https://github.com/ouch-org/ouch/pull/264) ([hivehand](https://github.com/hivehand)) ### New Contributors @@ -111,7 +111,7 @@ Categories Used: - Implement command 'list' to show archive contents [\#129](https://github.com/ouch-org/ouch/pull/129) ([AntonHermann](https://github.com/AntonHermann)) - Print number of unpacked files by [\#130](https://github.com/ouch-org/ouch/pull/130) ([dcariotti](https://github.com/dcariotti)) -**Disclaimer: _Our installation script does not support installing man pages and shell completions yet, but PRs are welcome!_ ** +**Disclaimer: _Our installation script does not support installing man pages and shell completions yet, but PRs are welcome!_** ### Bug Fixes