From 7c7640b462e357df6fea67e6bc284c983933d1cd Mon Sep 17 00:00:00 2001 From: Tyera Eulberg Date: Thu, 26 Aug 2021 13:05:05 -0600 Subject: [PATCH] Fix typos (#19448) --- cli/src/program.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/src/program.rs b/cli/src/program.rs index 0313589b62..1ae4a366ce 100644 --- a/cli/src/program.rs +++ b/cli/src/program.rs @@ -294,7 +294,7 @@ impl ProgramSubCommands for App<'_, '_> { .conflicts_with("account") .conflicts_with("buffers") .required_unless_one(&["account", "buffers"]) - .help("Show every upgradebale program that matches the authority") + .help("Show every upgradeable program that matches the authority") ) .arg( Arg::with_name("buffers") @@ -1368,7 +1368,7 @@ fn process_show( })) } else { Err(format!( - "{} is not an upgradeble loader Buffer or Program account", + "{} is not an upgradeable loader Buffer or Program account", account_pubkey ) .into()) @@ -1439,7 +1439,7 @@ fn process_dump( Ok(format!("Wrote program to {}", output_location)) } else { Err(format!( - "{} is not an upgradeble loader buffer or program account", + "{} is not an upgradeable loader buffer or program account", account_pubkey ) .into())