diff --git a/contracts/ownership/Ownable.sol b/contracts/ownership/Ownable.sol index d773a24d6d3..f42df46f6bb 100644 --- a/contracts/ownership/Ownable.sol +++ b/contracts/ownership/Ownable.sol @@ -35,6 +35,9 @@ contract Ownable { /** * @dev Allows the current owner to relinquish control of the contract. + * @notice Renouncing to ownership will leave the contract without an owner. + * It will not be possible to call the functions with the `onlyOwner` + * modifier anymore. */ function renounceOwnership() public onlyOwner { emit OwnershipRenounced(owner);