Skip to content

Commit

Permalink
Update create_nft_with_resource_account.move (aptos-labs#9855)
Browse files Browse the repository at this point in the history
Minor doc change
  • Loading branch information
coderwithsense authored Sep 23, 2023
1 parent d686113 commit 16228e3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ module mint_nft::create_nft_with_resource_account {
public entry fun mint_event_ticket(receiver: &signer) acquires ModuleData {
let module_data = borrow_global_mut<ModuleData>(@mint_nft);

// Create a signer of the resource account from the signer capabiity stored in this module.
// Create a signer of the resource account from the signer capability stored in this module.
// Using a resource account and storing its signer capability within the module allows the module to programmatically
// sign transactions on behalf of the module.
let resource_signer = account::create_signer_with_capability(&module_data.signer_cap);
Expand Down

0 comments on commit 16228e3

Please sign in to comment.