diff --git a/programs/bubblegum/program/src/processor/compress.rs b/programs/bubblegum/program/src/processor/compress.rs index 6c2e9e27..ca7d9bd6 100644 --- a/programs/bubblegum/program/src/processor/compress.rs +++ b/programs/bubblegum/program/src/processor/compress.rs @@ -13,7 +13,7 @@ pub struct Compress<'info> { pub tree_authority: UncheckedAccount<'info>, /// CHECK: This account is checked in the instruction pub leaf_owner: Signer<'info>, - /// CHECK: This account is chekced in the instruction + /// CHECK: This account is checked in the instruction pub leaf_delegate: UncheckedAccount<'info>, /// CHECK: This account is not read pub merkle_tree: UncheckedAccount<'info>, diff --git a/programs/bubblegum/program/src/processor/redeem.rs b/programs/bubblegum/program/src/processor/redeem.rs index 3ea14a35..e01605f1 100644 --- a/programs/bubblegum/program/src/processor/redeem.rs +++ b/programs/bubblegum/program/src/processor/redeem.rs @@ -27,7 +27,7 @@ pub struct Redeem<'info> { pub tree_authority: Account<'info, TreeConfig>, #[account(mut)] pub leaf_owner: Signer<'info>, - /// CHECK: This account is chekced in the instruction + /// CHECK: This account is checked in the instruction pub leaf_delegate: UncheckedAccount<'info>, #[account(mut)] /// CHECK: checked in cpi diff --git a/programs/bubblegum/program/src/processor/transfer.rs b/programs/bubblegum/program/src/processor/transfer.rs index 7ec1f93a..1f1d7d24 100644 --- a/programs/bubblegum/program/src/processor/transfer.rs +++ b/programs/bubblegum/program/src/processor/transfer.rs @@ -17,7 +17,7 @@ pub struct Transfer<'info> { pub tree_authority: Account<'info, TreeConfig>, /// CHECK: This account is checked in the instruction pub leaf_owner: UncheckedAccount<'info>, - /// CHECK: This account is chekced in the instruction + /// CHECK: This account is checked in the instruction pub leaf_delegate: UncheckedAccount<'info>, /// CHECK: This account is neither written to nor read from. pub new_leaf_owner: UncheckedAccount<'info>,