Fix ERC721URIStorage in documentation

This commit is contained in:
Francisco Giordano
2021-03-15 16:47:39 -03:00
parent cd443f0d5b
commit 7c1625b0e0
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ NOTE: This core set of contracts is designed to be unopinionated, allowing devel
{{ERC721Burnable}} {{ERC721Burnable}}
{{ERC721TokenUri}} {{ERC721URIStorage}}
== Presets == Presets

View File

@ -5,7 +5,7 @@ pragma solidity ^0.8.0;
import "../ERC721.sol"; import "../ERC721.sol";
/** /**
* @dev ERC721 token with storage based token uri management. * @dev ERC721 token with storage based token URI management.
*/ */
abstract contract ERC721URIStorage is ERC721 { abstract contract ERC721URIStorage is ERC721 {
using Strings for uint256; using Strings for uint256;