diff options
author | Sergey Pepyakin <s.pepyakin@gmail.com> | 2017-09-19 23:00:55 +0300 |
---|---|---|
committer | Sergey Pepyakin <s.pepyakin@gmail.com> | 2017-09-19 23:00:55 +0300 |
commit | 32e6f111ff331a753f5acb0fcfabe8dceb20d65b (patch) | |
tree | 376798c1ffa35d2768f28e21b5b7451044be9a49 | |
parent | 7308ee86f14d3db5a4f37e6a99790d8646c12d3a (diff) |
Clean.
-rw-r--r-- | src/options.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/options.rs b/src/options.rs index 47b8feb2..6f5ad6c8 100644 --- a/src/options.rs +++ b/src/options.rs @@ -88,10 +88,12 @@ where .help("Derive partialord on any type."), Arg::with_name("with-derive-eq") .long("with-derive-eq") - .help("Derive eq on any type. Enable this option also enables --with-derive-partialeq"), + .help("Derive eq on any type. Enable this option also \ + enables --with-derive-partialeq"), Arg::with_name("with-derive-ord") .long("with-derive-ord") - .help("Derive ord on any type"), + .help("Derive ord on any type. Enable this option also \ + enables --with-derive-partialord"), Arg::with_name("no-doc-comments") .long("no-doc-comments") .help("Avoid including doc comments in the output, see: \ |