Skip to content

Commit

Permalink
chore(nft): fix incorrect prefix of comment (#18871)
Browse files Browse the repository at this point in the history
  • Loading branch information
taeguk authored Dec 22, 2023
1 parent 9c00cf2 commit 44be021
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/nft/keeper/nft.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func (k Keeper) Update(ctx context.Context, token nft.NFT) error {
return nil
}

// Update defines a method for updating an exist nft
// updateWithNoCheck defines a method for updating an exist nft
// Note: this method does not check whether the class already exists in nft.
// The upper-layer application needs to check it when it needs to use it
func (k Keeper) updateWithNoCheck(ctx context.Context, token nft.NFT) {
Expand Down Expand Up @@ -126,7 +126,7 @@ func (k Keeper) Transfer(ctx context.Context,
return nil
}

// Transfer defines a method for sending a nft from one account to another account.
// transferWithNoCheck defines a method for sending a nft from one account to another account.
// Note: this method does not check whether the class already exists in nft.
// The upper-layer application needs to check it when it needs to use it
func (k Keeper) transferWithNoCheck(ctx context.Context,
Expand Down

0 comments on commit 44be021

Please sign in to comment.