Skip to content

Commit

Permalink
Fix documentation typos
Browse files Browse the repository at this point in the history
(cherry picked from commit a98814b)
  • Loading branch information
frangio committed Apr 26, 2021
1 parent 10c763d commit cfd6e7e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion contracts/token/ERC1155/ERC1155.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
*
* @dev Implementation of the basic standard multi-token.
* See https://eips.ethereum.org/EIPS/eip-1155
* Originally based on code by Enjin: https://github.com/enjin/erc-1155
Expand Down
2 changes: 1 addition & 1 deletion contracts/token/ERC1155/IERC1155Receiver.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";

/**
* _Available since v3.1._
* @dev _Available since v3.1._
*/
interface IERC1155Receiver is IERC165 {

Expand Down
2 changes: 1 addition & 1 deletion contracts/utils/introspection/ERC1820Implementer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ contract ERC1820Implementer is IERC1820Implementer {
mapping(bytes32 => mapping(address => bool)) private _supportedInterfaces;

/**
* See {IERC1820Implementer-canImplementInterfaceForAddress}.
* @dev See {IERC1820Implementer-canImplementInterfaceForAddress}.
*/
function canImplementInterfaceForAddress(bytes32 interfaceHash, address account) public view virtual override returns (bytes32) {
return _supportedInterfaces[interfaceHash][account] ? _ERC1820_ACCEPT_MAGIC : bytes32(0x00);
Expand Down

0 comments on commit cfd6e7e

Please sign in to comment.