diff --git a/content/references/protocol-reference/transactions/transaction-types/nftokenburn.md b/content/references/protocol-reference/transactions/transaction-types/nftokenburn.md
index 97b1b74ab1..1add8f21f0 100644
--- a/content/references/protocol-reference/transactions/transaction-types/nftokenburn.md
+++ b/content/references/protocol-reference/transactions/transaction-types/nftokenburn.md
@@ -104,7 +104,7 @@ Issuers might want to issue NFTs from their well known account, while at the sam
- MintAccount
+ | NFTokenMinter
|
|
@@ -112,26 +112,26 @@ Issuers might want to issue NFTs from their well known account, while at the sam
AccountID
|
- The MintAccount field, if set, specifies an alternate account which is allowed to execute the NFTokenMint and NFTokenBurn operations on behalf of the account.
+ | The NFTokenMinter field, if set, specifies an alternate account that is allowed to execute the NFTokenMint and NFTokenBurn operations on behalf of the account.
|
-The `SetAccount` transaction allows the `MintAccount` field to be set or cleared.
+The `SetAccount` transaction allows the `NFTokenMinter` field to be set or cleared.
-### MintedTokens
+### MintedNFTokens
-The `MintedTokens` field is used to form the `NFTokenID` of a new object, to ensure the uniqueness of `NFToken` objects. If this field is not present, the value is 0.
+The `MintedNFTokens` field is used to form the `NFTokenID` of a new object, to ensure the uniqueness of `NFToken` objects. If this field is not present, the value is 0.
-### BurnedTokens
+### BurnedNFTokens
-The `BurnedTokens` field provides a convenient way to determine how many `NFToken` objects issued by an account are still active (that is, not burned). If this field is not present the value 0 is assumed. The field is decremented whenever a token issued by this account is burned.
+The `BurnedNFTokens` field provides a convenient way to determine how many `NFToken` objects issued by an account are still active (that is, not burned). If this field is not present the value 0 is assumed. The field is decremented whenever a token issued by this account is burned.
-An account for which the difference in the number of minted and burned tokens, as stored in the `MintedTokens` and `BurnedTokens` fields respectively, is non-zero cannot be deleted.
+An account for which the difference in the number of minted and burned tokens, as stored in the `MintedNFTokens` and `BurnedNFTokens` fields respectively, is non-zero cannot be deleted.