Skip to content

Commit

Permalink
Improved a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mudgen committed Oct 15, 2020
1 parent f8a5954 commit cfb183e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contracts/Diamond.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ pragma solidity ^0.7.1;
pragma experimental ABIEncoderV2;

/******************************************************************************\
* Author: Nick Mudge
* Author: Nick Mudge <[email protected]> (https://twitter.com/mudgen)
*
* Implementation of an example of a diamond.
* Implementation of a diamond.
/******************************************************************************/

import "./libraries/LibDiamond.sol";
Expand All @@ -20,8 +20,8 @@ contract Diamond {
LibDiamond.setContractOwner(_owner);

LibDiamond.DiamondStorage storage ds = LibDiamond.diamondStorage();
// adding ERC165 data

// adding ERC165 data
ds.supportedInterfaces[type(IERC165).interfaceId] = true;
ds.supportedInterfaces[type(IDiamondCut).interfaceId] = true;
ds.supportedInterfaces[type(IDiamondLoupe).interfaceId] = true;
Expand Down

0 comments on commit cfb183e

Please sign in to comment.