Every other state-changing entry point (initialize, create_event, issue_ticket, purchase_primary, transfer_ticket, check_in, revoke_ticket, list_for_resale, buy_resale) has an explanatory /// doc comment above it, but pub fn cancel_resale has none, making it the sole outlier in the public API surface.
Suggested fix: Add a short doc comment above cancel_resale, e.g. /// Pulls an owned ticket off the resale marketplace, returning it to Valid status.
Every other state-changing entry point (
initialize,create_event,issue_ticket,purchase_primary,transfer_ticket,check_in,revoke_ticket,list_for_resale,buy_resale) has an explanatory///doc comment above it, butpub fn cancel_resalehas none, making it the sole outlier in the public API surface.Suggested fix: Add a short doc comment above
cancel_resale, e.g./// Pulls an owned ticket off the resale marketplace, returning it to Valid status.