From 411bdc43217168074f3386510734da5e64955669 Mon Sep 17 00:00:00 2001 From: Benjamin Sago Date: Sat, 5 Aug 2017 19:45:55 +0100 Subject: [PATCH] =?UTF-8?q?These=20help=20fields=20don=E2=80=99t=20need=20?= =?UTF-8?q?to=20be=20pub?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/options/help.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/options/help.rs b/src/options/help.rs index 2813dd6..ce7e15a 100644 --- a/src/options/help.rs +++ b/src/options/help.rs @@ -58,13 +58,13 @@ static EXTENDED_HELP: &str = r##" -@, --extended list each file's extended pub struct HelpString { /// Only show the help for the long section, not all the help. - pub only_long: bool, + only_long: bool, /// Whether the --git option should be included in the help. - pub git: bool, + git: bool, /// Whether the --extended option should be included in the help. - pub xattrs: bool, + xattrs: bool, } impl HelpString {