src/cli/command.rs: fix ReST output format

This commit is contained in:
Dietmar Maurer 2019-06-25 06:19:51 +02:00
parent 9f46c7de4b
commit 79bc7345e8

View File

@ -69,7 +69,7 @@ fn generate_usage_str(
options.push_str(&get_property_description(prop, &schema, ParameterDisplayStyle::Arg, format)); options.push_str(&get_property_description(prop, &schema, ParameterDisplayStyle::Arg, format));
} else { } else {
args.push_str("--"); args.push_str(prop); args.push_str(" --"); args.push_str(prop);
args.push(' '); args.push(' ');
args.push_str(&type_text); args.push_str(&type_text);
} }
@ -90,7 +90,7 @@ fn generate_usage_str(
format!("{}{}{}{}\n\n{}\n\n", indent, prefix, args, option_indicator, description) format!("{}{}{}{}\n\n{}\n\n", indent, prefix, args, option_indicator, description)
} }
DocumentationFormat::ReST => { DocumentationFormat::ReST => {
format!("``{} {}{}``\n\n{}\n\n", prefix, args.trim(), option_indicator, description) format!("``{}{}{}``\n\n{}\n\n", prefix, args, option_indicator, description)
} }
}; };