Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(auction-house): typo fix #1165

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
typo fix
IssouChancla committed Dec 16, 2023
commit 5b618260a57abeaf9006f15a86b20e7c3733b911
4 changes: 2 additions & 2 deletions auction-house/program/src/receipt/mod.rs
Original file line number Diff line number Diff line change
@@ -98,7 +98,7 @@ pub struct PurchaseReceipt {
pub created_at: i64,
}

/// Accounts for the [`print_listing_receipt` hanlder](fn.print_listing_receipt.html).
/// Accounts for the [`print_listing_receipt` handler](fn.print_listing_receipt.html).
#[derive(Accounts)]
#[instruction(receipt_bump: u8)]
pub struct PrintListingReceipt<'info> {
@@ -214,7 +214,7 @@ pub struct CancelListingReceipt<'info> {
pub instruction: UncheckedAccount<'info>,
}

/// Add a cancelation time to a listing receipt.
/// Add a cancellation time to a listing receipt.
pub fn cancel_listing_receipt<'info>(
ctx: Context<'_, '_, '_, 'info, CancelListingReceipt<'info>>,
) -> Result<()> {