Apply suggestions from code review

This commit is contained in:
Michael Vines 2020-04-03 09:58:11 -07:00
parent 962e41f9ca
commit 66c78cb819
1 changed files with 4 additions and 4 deletions

View File

@ -80,7 +80,7 @@ impl VoteSubCommands for App<'_, '_> {
.index(1) .index(1)
.value_name("VOTE_ACCOUNT_ADDRESS") .value_name("VOTE_ACCOUNT_ADDRESS")
.required(true), .required(true),
"Vote account in which to set the authorized voter."), "Vote account in which to set the authorized voter. "),
) )
.arg( .arg(
Arg::with_name("authorized") Arg::with_name("authorized")
@ -95,7 +95,7 @@ impl VoteSubCommands for App<'_, '_> {
.index(3) .index(3)
.value_name("NEW_AUTHORIZED_PUBKEY") .value_name("NEW_AUTHORIZED_PUBKEY")
.required(true), .required(true),
"New authorized vote signer."), "New authorized vote signer. "),
), ),
) )
.subcommand( .subcommand(
@ -106,7 +106,7 @@ impl VoteSubCommands for App<'_, '_> {
.index(1) .index(1)
.value_name("VOTE_ACCOUNT_ADDRESS") .value_name("VOTE_ACCOUNT_ADDRESS")
.required(true), .required(true),
"Vote account in which to set the authorized withdrawer."), "Vote account in which to set the authorized withdrawer. "),
) )
.arg( .arg(
Arg::with_name("authorized") Arg::with_name("authorized")
@ -121,7 +121,7 @@ impl VoteSubCommands for App<'_, '_> {
.index(3) .index(3)
.value_name("AUTHORIZED_PUBKEY") .value_name("AUTHORIZED_PUBKEY")
.required(true), .required(true),
"New authorized withdrawer."), "New authorized withdrawer. "),
), ),
) )
.subcommand( .subcommand(