Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Add the missing single quota mark in words #6604

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
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
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
Loading