Skip to content
Open
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 tests/auction-house/programs/auction-house/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ pub mod auction_house {
&token_mint.key(),
)?;

// make sure you cant get rugged
// make sure you can't get rugged
if buyer_rec_acct.delegate.is_some() {
return err!(ErrorCode::BuyerATACannotHaveDelegate);
}
Expand Down
2 changes: 1 addition & 1 deletion tests/cpi-returns/tests/cpi-return.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ describe("CPI return", () => {
);
});

it("cant call view on mutable instruction", async () => {
it("can't call view on mutable instruction", async () => {
assert.equal(calleeProgram.views.initialize, undefined);
try {
await calleeProgram.methods
Expand Down