@@ -134,7 +134,7 @@ the commits.
[\fB-v\fR \fIN\fR | \fB--reroll-count=\fR\fIN\fR] \
[\fB--rfc\fR] \
[\fB--stdout\fR] \
-[\fB--subject-prefix=\fR\fISubject-Prefix\fR]
+[\fB--subject-prefix=\fR\fIprefix\fR]
Prepare the patch series to send via email.
This creates one file per patch in the series, plus one additional file for the
cover letter if any.
@@ -172,8 +172,8 @@ Use [RFC PATCH] instead of the standard [PATCH] prefix.
.B --stdout
Write the entire patch series to stdout rather than to separate patch files.
.TP
-.BI --subject-prefix= Subject-Prefix-Use [\fISubject-Prefix\fR] instead of the standard [PATCH] prefix.
+.BI --subject-prefix= prefix
+Use [\fIprefix\fR] instead of the standard [PATCH] prefix.
.RE
.TP
@@ -1981,7 +1981,7 @@ fn main() {
.arg_from_usage("-v, --reroll-count=[N] 'Mark the patch series as PATCH vN'")
.arg(Arg::from_usage("--rfc 'Use [RFC PATCH] instead of the standard [PATCH] prefix'").conflicts_with("subject-prefix"))
.arg_from_usage("--stdout 'Write patches to stdout rather than files'")
- .arg_from_usage("--subject-prefix [Subject-Prefix] 'Use [Subject-Prefix] instead of the standard [PATCH] prefix'"),
+ .arg_from_usage("--subject-prefix [prefix] 'Use [prefix] instead of the standard [PATCH] prefix'"),
SubCommand::with_name("log")
.about("Show the history of the patch series")
.arg_from_usage("-p, --patch 'Include a patch for each change committed to the series'"),