Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions contracts/token/ERC1155/extensions/ERC1155Supply.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import {Arrays} from "../../../utils/Arrays.sol";
*
* Useful for scenarios where Fungible and Non-fungible tokens have to be
* clearly identified. Note: While a totalSupply of 1 might mean the
* corresponding is an NFT, there is no guarantees that no other token with the
* same id are not going to be minted.
* corresponding token is an NFT, there are no guarantees that no other token
* with the same id are not going to be minted.
*
* NOTE: This contract implies a global limit of 2**256 - 1 to the number of tokens
* that can be minted.
Expand Down Expand Up @@ -40,7 +40,7 @@ abstract contract ERC1155Supply is ERC1155 {
}

/**
* @dev Indicates whether any token exist with a given id, or not.
* @dev Indicates whether any token exists with a given id, or not.
*/
function exists(uint256 id) public view virtual returns (bool) {
return totalSupply(id) > 0;
Expand Down
Loading