Skip to content

Commit

Permalink
Merge #1876
Browse files Browse the repository at this point in the history
1876: Allow usage of deprecated arg::help in yaml r=CreepySkeleton a=pksunkara



Co-authored-by: Pavan Kumar Sunkara <[email protected]>
  • Loading branch information
bors[bot] and pksunkara authored Apr 28, 2020
2 parents 0bf7077 + 20d6b01 commit 5b9dbee
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/build/arg/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,8 @@ impl<'help> Arg<'help> {
"aliases" => yaml_vec_or_str!(v, a, alias),
"about" => yaml_to_str!(a, v, about),
"long_about" => yaml_to_str!(a, v, long_about),
"help" => yaml_to_str!(a, v, about),
"long_help" => yaml_to_str!(a, v, long_about),
"required" => yaml_to_bool!(a, v, required),
"required_if" => yaml_tuple2!(a, v, required_if),
"required_ifs" => yaml_tuple2!(a, v, required_if),
Expand Down

0 comments on commit 5b9dbee

Please sign in to comment.