Skip to content

Commit 7696589

Browse files
committed
Fix typo.
1 parent 03bd390 commit 7696589

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/contracts/tokens/nf-token.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ contract NFToken is
2222
string constant ZERO_ADDRESS = "003001";
2323
string constant NOT_VALID_NFT = "003002";
2424
string constant NOT_OWNER_OR_OPERATOR = "003003";
25-
string constant NOT_OWNER_APPROWED_OR_OPERATOR = "003004";
25+
string constant NOT_OWNER_APPROVED_OR_OPERATOR = "003004";
2626
string constant NOT_ABLE_TO_RECEIVE_NFT = "003005";
2727
string constant NFT_ALREADY_EXISTS = "003006";
2828
string constant NOT_OWNER = "003007";
@@ -83,7 +83,7 @@ contract NFToken is
8383
tokenOwner == msg.sender
8484
|| idToApproval[_tokenId] == msg.sender
8585
|| ownerToOperators[tokenOwner][msg.sender],
86-
NOT_OWNER_APPROWED_OR_OPERATOR
86+
NOT_OWNER_APPROVED_OR_OPERATOR
8787
);
8888
_;
8989
}

0 commit comments

Comments
 (0)