From 72884b264259b25d2a85c3ddc7ca208f938f6cda Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Thu, 31 Dec 2020 08:51:29 +0100 Subject: [PATCH] docs: Mention correct default value in term_width docstring The default was correctly changed to 100 in #1950, but later accidentally reverted in 89fcc75. --- src/build/app/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build/app/mod.rs b/src/build/app/mod.rs index 1f707cfd..342746b2 100644 --- a/src/build/app/mod.rs +++ b/src/build/app/mod.rs @@ -1000,7 +1000,7 @@ impl<'help> App<'help> { } /// Sets the terminal width at which to wrap help messages. Defaults to - /// `120`. Using `0` will ignore terminal widths and use source formatting. + /// `100`. Using `0` will ignore terminal widths and use source formatting. /// /// `clap` automatically tries to determine the terminal width on Unix, /// Linux, OSX and Windows if the `wrap_help` cargo "feature" has been enabled