diff --git a/contracts/token/ERC1155/IERC1155Receiver.sol b/contracts/token/ERC1155/IERC1155Receiver.sol index f27b89769bf..f4f26272a4b 100644 --- a/contracts/token/ERC1155/IERC1155Receiver.sol +++ b/contracts/token/ERC1155/IERC1155Receiver.sol @@ -34,7 +34,7 @@ interface IERC1155Receiver is IERC165 { ) external returns (bytes4); /** - * @dev Handles the receipt of a multiple ERC-1155 token types. This function + * @dev Handles the receipt of multiple ERC-1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * diff --git a/contracts/token/ERC1155/utils/ERC1155Utils.sol b/contracts/token/ERC1155/utils/ERC1155Utils.sol index 03cb0f0b953..441f5d380fd 100644 --- a/contracts/token/ERC1155/utils/ERC1155Utils.sol +++ b/contracts/token/ERC1155/utils/ERC1155Utils.sol @@ -7,7 +7,7 @@ import {IERC1155Receiver} from "../IERC1155Receiver.sol"; import {IERC1155Errors} from "../../../interfaces/draft-IERC6093.sol"; /** - * @dev Library that provide common ERC-1155 utility functions. + * @dev Library that provides common ERC-1155 utility functions. * * See https://eips.ethereum.org/EIPS/eip-1155[ERC-1155]. * diff --git a/contracts/token/ERC6909/ERC6909.sol b/contracts/token/ERC6909/ERC6909.sol index b1f16450678..49ba380bd6a 100644 --- a/contracts/token/ERC6909/ERC6909.sol +++ b/contracts/token/ERC6909/ERC6909.sol @@ -113,7 +113,7 @@ contract ERC6909 is Context, ERC165, IERC6909 { } /** - * @dev Destroys a `amount` of token `id` from `account`. + * @dev Destroys an `amount` of token `id` from `account`. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address.