File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
contracts/token/ERC1155/extensions Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ import {Arrays} from "../../../utils/Arrays.sol";
1111 *
1212 * Useful for scenarios where Fungible and Non-fungible tokens have to be
1313 * clearly identified. Note: While a totalSupply of 1 might mean the
14- * corresponding is an NFT, there is no guarantees that no other token with the
15- * same id are not going to be minted.
14+ * corresponding token is an NFT, there are no guarantees that no other token
15+ * with the same id are not going to be minted.
1616 *
1717 * NOTE: This contract implies a global limit of 2**256 - 1 to the number of tokens
1818 * that can be minted.
@@ -40,7 +40,7 @@ abstract contract ERC1155Supply is ERC1155 {
4040 }
4141
4242 /**
43- * @dev Indicates whether any token exist with a given id, or not.
43+ * @dev Indicates whether any token exists with a given id, or not.
4444 */
4545 function exists (uint256 id ) public view virtual returns (bool ) {
4646 return totalSupply (id) > 0 ;
You can’t perform that action at this time.
0 commit comments