From e01fccd3c76610ca3418cbed1adfee2bad13f40c Mon Sep 17 00:00:00 2001 From: Pedro de Oliveira Date: Sun, 7 May 2023 20:40:39 +0100 Subject: [PATCH] Remove uneeded part in example. --- README.md | 2 +- src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ccf5fd1..e328b96 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Here are the available options: -w, --wildcard Filename wildcard to filter the files to be renamed in the directory. - Use `*` to match any filename. For example, "*.mkv" will match all files with the ".mkv" extension. + For example, "*.mkv" will match all files with the ".mkv" extension. [default: *] -h, --help diff --git a/src/main.rs b/src/main.rs index 9d98fe5..10ef3f8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -26,7 +26,7 @@ struct Args { /// Filename wildcard to filter the files to be renamed in the directory. /// - /// Use `*` to match any filename. For example, "*.mkv" will match all files with the ".mkv" extension. + /// For example, "*.mkv" will match all files with the ".mkv" extension. #[arg(short = 'w', long, default_value = "*")] wildcard: String, }