Skip to content

Commit ea71000

Browse files
authored
fix: typos in ERC1155 extension (#6113)
1 parent ec3e80e commit ea71000

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contracts/token/ERC1155/extensions/ERC1155Supply.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)