Separate mapping keyword by whitespace (#2287)

Co-authored-by: pm_468 <oleg.kuzmenko@lindenvalley.de>
This commit is contained in:
Oleg Kuzmenko
2020-06-19 17:00:05 +03:00
committed by GitHub
parent 21d06999f6
commit 3f4420527b

View File

@ -48,7 +48,7 @@ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable
string private _symbol;
// Optional mapping for token URIs
mapping(uint256 => string) private _tokenURIs;
mapping (uint256 => string) private _tokenURIs;
// Base URI
string private _baseURI;