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

Commit 14564dd

Browse files
authored
Add the missing single quota mark in words (#6604)
Signed-off-by: forcedebug <[email protected]>
1 parent c449067 commit 14564dd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

single-pool/cli/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ async fn command_create_stake(config: &Config, command_config: CreateStakeCli) -
755755
// display stake pool(s)
756756
async fn command_display(config: &Config, command_config: DisplayCli) -> CommandResult {
757757
if command_config.all {
758-
// the filter isnt necessary now but makes the cli forward-compatible
758+
// the filter isn't necessary now but makes the cli forward-compatible
759759
let pools = config
760760
.rpc_client
761761
.get_program_accounts_with_config(

single-pool/program/tests/helpers/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ where
425425
e.try_into().unwrap()
426426
} else {
427427
panic!(
428-
"couldnt convert {:?} to ProgramError (expected {:?})",
428+
"couldn't convert {:?} to ProgramError (expected {:?})",
429429
got, expected
430430
);
431431
};

token/cli/src/command.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1347,7 +1347,7 @@ async fn command_transfer(
13471347
Add `--allow-non-system-account-recipient` to complete the transfer.".into());
13481348
}
13491349
}
1350-
// if it doesn't exist, it definitely isnt a token account!
1350+
// if it doesn't exist, it definitely isn't a token account!
13511351
// we gate transfer with a different flag
13521352
else if maybe_recipient_account_data.is_none() && allow_unfunded_recipient {
13531353
false

0 commit comments

Comments
 (0)