@@ -67,7 +67,7 @@ pub(super) fn command() -> clap::Command<'static> {
67
67
. help ( "Extra arguments passed to 'git format-patch'" )
68
68
. last ( true )
69
69
. allow_hyphen_values ( true )
70
- . value_name ( "GIT-OPTIONS " ) ,
70
+ . value_name ( "git-options " ) ,
71
71
)
72
72
. arg ( & * crate :: argset:: BRANCH_ARG )
73
73
. arg (
@@ -116,16 +116,16 @@ lazy_static! {
116
116
. conflicts_with( "numbered" ) ,
117
117
Arg :: new( "start-number" )
118
118
. long( "start-number" )
119
- . help( "Start numbering at N instead of 1" )
120
- . value_name( "N " )
119
+ . help( "Start numbering at <n> instead of 1" )
120
+ . value_name( "n " )
121
121
. takes_value( true ) ,
122
122
Arg :: new( "reroll-count" )
123
123
. long( "reroll-count" )
124
124
. short( 'v' )
125
- . help( "Mark the series as the Nth reroll" )
125
+ . help( "Mark the series as the <n>th reroll" )
126
126
. long_help(
127
- "Mark the series as the <N >-th iteration of the topic. The output \
128
- filenames have \" v<N >\" prepended to them, and the subject prefix \
127
+ "Mark the series as the <n >-th iteration of the topic. The output \
128
+ filenames have \" v<n >\" prepended to them, and the subject prefix \
129
129
(\" PATCH\" by default, but configurable via the --subject-prefix \
130
130
option) has ` v<N>` appended to it. E.g. --reroll-count=4 may produce \
131
131
v4-0001-add-makefile.patch file that has \" Subject: [PATCH v4 1/20] \
@@ -135,7 +135,7 @@ lazy_static! {
135
135
range-diff/interdiff with the previous version does not state exactly \
136
136
which version the new interation is compared against.",
137
137
)
138
- . value_name( "N " )
138
+ . value_name( "n " )
139
139
. takes_value( true ) ,
140
140
Arg :: new( "rfc" )
141
141
. long( "rfc" )
@@ -414,7 +414,7 @@ lazy_static! {
414
414
git-range-diff(1)) for details.",
415
415
)
416
416
. takes_value( true )
417
- . value_name( "N " )
417
+ . value_name( "n " )
418
418
. forbid_empty_values( true ) ,
419
419
// NO --from
420
420
// NO --no-add-header
0 commit comments