diff --git a/src/access/OwnerTwoSteps/LibOwnerTwoSteps.sol b/src/access/OwnerTwoSteps/LibOwnerTwoSteps.sol index cd08296e..8cf47608 100644 --- a/src/access/OwnerTwoSteps/LibOwnerTwoSteps.sol +++ b/src/access/OwnerTwoSteps/LibOwnerTwoSteps.sol @@ -48,7 +48,7 @@ library LibOwnerTwoSteps { } /// @notice Initiates a two-step ownership transfer. - /// @param _newOwner The address of the new owner (set to `address(0)` to renounce). + /// @param _newOwner The address of the new owner of the contract function transferOwnership(address _newOwner) internal { OwnerTwoStepsStorage storage s = getStorage(); s.pendingOwner = _newOwner; diff --git a/src/access/OwnerTwoSteps/OwnerTwoSteps.sol b/src/access/OwnerTwoSteps/OwnerTwoSteps.sol index b3a2a34d..53a762fb 100644 --- a/src/access/OwnerTwoSteps/OwnerTwoSteps.sol +++ b/src/access/OwnerTwoSteps/OwnerTwoSteps.sol @@ -42,7 +42,6 @@ contract OwnerTwoStepsFacet { } /// @notice Set the address of the new owner of the contract - /// @dev Set _newOwner to address(0) to renounce any ownership. /// @param _newOwner The address of the new owner of the contract function transferOwnership(address _newOwner) external { OwnerTwoStepsStorage storage s = getStorage();