File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ library LibOwnerTwoSteps {
4848 }
4949
5050 /// @notice Initiates a two-step ownership transfer.
51- /// @param _newOwner The address of the new owner (set to `address(0)` to renounce).
51+ /// @param _newOwner The address of the new owner of the contract
5252 function transferOwnership (address _newOwner ) internal {
5353 OwnerTwoStepsStorage storage s = getStorage ();
5454 s.pendingOwner = _newOwner;
Original file line number Diff line number Diff line change @@ -42,7 +42,6 @@ contract OwnerTwoStepsFacet {
4242 }
4343
4444 /// @notice Set the address of the new owner of the contract
45- /// @dev Set _newOwner to address(0) to renounce any ownership.
4645 /// @param _newOwner The address of the new owner of the contract
4746 function transferOwnership (address _newOwner ) external {
4847 OwnerTwoStepsStorage storage s = getStorage ();
You can’t perform that action at this time.
0 commit comments