Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion contracts/token/ERC1155/IERC1155Receiver.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down
2 changes: 1 addition & 1 deletion contracts/token/ERC1155/utils/ERC1155Utils.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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].
*
Expand Down
2 changes: 1 addition & 1 deletion contracts/token/ERC6909/ERC6909.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading