Browse Source

Fix whitespace in IERC721Receiver (#2359)

Slight nit on spacing to reduce # of lines // conform to other OZ function syntax
Ross Campbell 5 years ago
parent
commit
ca7ee098ca
1 changed files with 1 additions and 2 deletions
  1. 1 2
      contracts/token/ERC721/IERC721Receiver.sol

+ 1 - 2
contracts/token/ERC721/IERC721Receiver.sol

@@ -17,6 +17,5 @@ interface IERC721Receiver {
      *
      * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
      */
-    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data)
-    external returns (bytes4);
+    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
 }