Browse Source

Fix README snippet typo

Francisco Giordano 7 years ago
parent
commit
0b8296e525
1 changed files with 1 additions and 1 deletions
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -25,7 +25,7 @@ import 'openzeppelin-solidity/contracts/token/ERC721/ERC721Full.sol';
 import 'openzeppelin-solidity/contracts/token/ERC721/ERC721Mintable.sol';
 
 contract MyNFT is ERC721Full, ERC721Mintable {
-  constructors() ERC721Full("MyNFT", "MNFT") public {
+  constructor() ERC721Full("MyNFT", "MNFT") public {
   }
 }
 ```