Remove acronym from Readme

This commit is contained in:
Francisco Giordano
2020-07-24 12:52:40 -03:00
committed by GitHub
parent 0c667ca32a
commit 09014f90f9

View File

@ -32,8 +32,8 @@ pragma solidity ^0.6.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
contract MyNFT is ERC721 {
constructor() ERC721("MyNFT", "MNFT") public {
contract MyCollectible is ERC721 {
constructor() ERC721("MyCollectible", "MCO") public {
}
}
```