From 9e13852135dc3305bf04acd0b5f232e22e38a5f4 Mon Sep 17 00:00:00 2001 From: soulofmischief Date: Wed, 20 Oct 2021 01:33:08 -0500 Subject: [PATCH] Fix typo (#2919) --- contracts/token/ERC1155/extensions/ERC1155Supply.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/token/ERC1155/extensions/ERC1155Supply.sol b/contracts/token/ERC1155/extensions/ERC1155Supply.sol index 6eafc3776..a4627dcf6 100644 --- a/contracts/token/ERC1155/extensions/ERC1155Supply.sol +++ b/contracts/token/ERC1155/extensions/ERC1155Supply.sol @@ -24,7 +24,7 @@ abstract contract ERC1155Supply is ERC1155 { } /** - * @dev Indicates weither any token exist with a given id, or not. + * @dev Indicates whether any token exist with a given id, or not. */ function exists(uint256 id) public view virtual returns (bool) { return ERC1155Supply.totalSupply(id) > 0;