Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

stake-accounts: fix typo withdrawl -> withdrawal #27894

Merged
merged 1 commit into from
Sep 18, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
stake-accounts: fix typo withdrawl -> withdrawal
  • Loading branch information
macalinao committed Sep 18, 2022
commit e137380f0d50d131e50f0aef3747e97b69953514
4 changes: 2 additions & 2 deletions stake-accounts/src/arg_parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ fn lockup_epoch_arg<'a, 'b>() -> Arg<'a, 'b> {
.long("lockup-epoch")
.takes_value(true)
.value_name("NUMBER")
.help("The epoch height at which each account will be available for withdrawl")
.help("The epoch height at which each account will be available for withdrawal")
}

fn lockup_date_arg<'a, 'b>() -> Arg<'a, 'b> {
Expand All @@ -115,7 +115,7 @@ fn lockup_date_arg<'a, 'b>() -> Arg<'a, 'b> {
.value_name("RFC3339 DATETIME")
.validator(is_rfc3339_datetime)
.takes_value(true)
.help("The date and time at which each account will be available for withdrawl")
.help("The date and time at which each account will be available for withdrawal")
}

fn num_accounts_arg<'a, 'b>() -> Arg<'a, 'b> {
Expand Down