From 09014f90f9da2b06742101f90dac20aa58e06cc8 Mon Sep 17 00:00:00 2001 From: Francisco Giordano Date: Fri, 24 Jul 2020 12:52:40 -0300 Subject: [PATCH] Remove acronym from Readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6032ad60a..0c993c135 100644 --- a/README.md +++ b/README.md @@ -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 { } } ```