Skip to content

Commit 03bd390

Browse files
committed
Fix comments.
1 parent 06ce4c1 commit 03bd390

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/contracts/tokens/nf-token-enumerable.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ contract NFTokenEnumerable is
1313
{
1414

1515
/**
16-
* List of revert message codes. Implementing dApp should handle showing the correct message.
16+
* @dev List of revert message codes. Implementing dApp should handle showing the correct message.
1717
* Based on 0xcert framework error codes.
1818
*/
1919
string constant INVALID_INDEX = "005007";

src/contracts/tokens/nf-token.sol

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ pragma solidity 0.8.0;
33

44
import "./erc721.sol";
55
import "./erc721-token-receiver.sol";
6-
import "../math/safe-math.sol";
76
import "../utils/supports-interface.sol";
87
import "../utils/address-utils.sol";
98

@@ -17,7 +16,7 @@ contract NFToken is
1716
using AddressUtils for address;
1817

1918
/**
20-
* List of revert message codes. Implementing dApp should handle showing the correct message.
19+
* @dev List of revert message codes. Implementing dApp should handle showing the correct message.
2120
* Based on 0xcert framework error codes.
2221
*/
2322
string constant ZERO_ADDRESS = "003001";

src/contracts/utils/erc165.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ interface ERC165
1010

1111
/**
1212
* @dev Checks if the smart contract includes a specific interface.
13-
* @notice This function uses less than 30,000 gas.
13+
* This function uses less than 30,000 gas.
1414
* @param _interfaceID The interface identifier, as specified in ERC-165.
1515
* @return True if _interfaceID is supported, false otherwise.
1616
*/

0 commit comments

Comments
 (0)