diff --git a/README.md b/README.md
index c5109dcb9f72..49fcec015528 100644
--- a/README.md
+++ b/README.md
@@ -385,15 +385,13 @@ ARGS:
INPUT The input file to use
USAGE:
- MyApp [FLAGS] [OPTIONS] [SUBCOMMAND]
-
-FLAGS:
- -h, --help Print help information
- -v Sets the level of verbosity
- -V, --version Print version information
+ MyApp [OPTIONS] [SUBCOMMAND]
OPTIONS:
-c, --config Sets a custom config file
+ -h, --help Print help information
+ -v Sets the level of verbosity
+ -V, --version Print version information
SUBCOMMANDS:
help Print this message or the help of the given subcommand(s)
diff --git a/benches/04_new_help.rs b/benches/04_new_help.rs
index 83c9e001c38e..077ac30cf2f6 100644
--- a/benches/04_new_help.rs
+++ b/benches/04_new_help.rs
@@ -196,7 +196,7 @@ pub fn example10(c: &mut Criterion) {
}
pub fn example4_template(c: &mut Criterion) {
- let mut app = app_example4().help_template("{bin} {version}\n{author}\n{about}\n\nUSAGE:\n {usage}\n\nFLAGS:\n{flags}\n\nARGS:\n{args}\n");
+ let mut app = app_example4().help_template("{bin} {version}\n{author}\n{about}\n\nUSAGE:\n {usage}\n\nOPTIONS:\n{options}\n\nARGS:\n{args}\n");
c.bench_function("example4_template", |b| b.iter(|| build_help(&mut app)));
}
diff --git a/benches/05_ripgrep.rs b/benches/05_ripgrep.rs
index 5a33745915ee..d8386293708c 100644
--- a/benches/05_ripgrep.rs
+++ b/benches/05_ripgrep.rs
@@ -3,7 +3,7 @@
//
// CLI used is adapted from ripgrep 48a8a3a691220f9e5b2b08f4051abe8655ea7e8a
-use clap::{App, AppSettings, Arg, ArgSettings};
+use clap::{App, Arg, ArgSettings};
use criterion::{criterion_group, criterion_main, Criterion};
use std::collections::HashMap;
use std::io::Cursor;
@@ -267,7 +267,7 @@ ARGS:
{positionals}
OPTIONS:
-{unified}";
+{options}";
/// Build a clap application with short help strings.
fn app_short() -> App<'static> {
@@ -306,7 +306,6 @@ where
.version("0.4.0") // Simulating
.about(ABOUT)
.max_term_width(100)
- .setting(AppSettings::UnifiedHelpMessage)
.override_usage(USAGE)
.help_template(TEMPLATE)
// Handle help/version manually to make their output formatting
diff --git a/clap_derive/README.md b/clap_derive/README.md
index 710cb648e19c..0367163e3318 100644
--- a/clap_derive/README.md
+++ b/clap_derive/README.md
@@ -82,22 +82,20 @@ Guillaume Pinot , others
A basic example
USAGE:
- basic [FLAGS] [OPTIONS] --output