Remove `` from clap comments.

Rewrite a bit the comment of the replacement input argument.
This commit is contained in:
Pedro de Oliveira 2023-05-11 20:03:25 +01:00
parent 5244352a4c
commit 5571e38898
1 changed files with 2 additions and 2 deletions

View File

@ -27,11 +27,11 @@ struct Args {
/// Replacement pattern for the matched file names.
///
/// You can use `{1}`, `{2}`, etc. to reference the match groups in the pattern.
/// There are also the following tags available:
/// The following tags are available:
/// * {full_name} - file name with extension
/// * {name} - file name without extension
/// * {ext} - extension
/// * {1}, {2}, etc. to reference the match groups in the search pattern.
/// Example: "Season {1} Episode {2}.{ext}"
#[arg(short = 'r', long, verbatim_doc_comment)]
replacement: String,