Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
Add the missing single quota mark in words (#6604)
Browse files Browse the repository at this point in the history
Signed-off-by: forcedebug <[email protected]>
  • Loading branch information
forcedebug authored Apr 22, 2024
1 parent c449067 commit 14564dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion single-pool/cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ async fn command_create_stake(config: &Config, command_config: CreateStakeCli) -
// display stake pool(s)
async fn command_display(config: &Config, command_config: DisplayCli) -> CommandResult {
if command_config.all {
// the filter isnt necessary now but makes the cli forward-compatible
// the filter isn't necessary now but makes the cli forward-compatible
let pools = config
.rpc_client
.get_program_accounts_with_config(
Expand Down
2 changes: 1 addition & 1 deletion single-pool/program/tests/helpers/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ where
e.try_into().unwrap()
} else {
panic!(
"couldnt convert {:?} to ProgramError (expected {:?})",
"couldn't convert {:?} to ProgramError (expected {:?})",
got, expected
);
};
Expand Down
2 changes: 1 addition & 1 deletion token/cli/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1347,7 +1347,7 @@ async fn command_transfer(
Add `--allow-non-system-account-recipient` to complete the transfer.".into());
}
}
// if it doesn't exist, it definitely isnt a token account!
// if it doesn't exist, it definitely isn't a token account!
// we gate transfer with a different flag
else if maybe_recipient_account_data.is_none() && allow_unfunded_recipient {
false
Expand Down

0 comments on commit 14564dd

Please sign in to comment.