Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update BaseRegistrar.sol #109

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/L2/BaseRegistrar.sol
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ contract BaseRegistrar is ERC721, Ownable {
return nameExpires[id] + GRACE_PERIOD < block.timestamp;
}

/// @notice Allows holders of names to renew their ownerhsip and extend their expiry.
/// @notice Allows holders of names to renew their ownership and extend their expiry.
///
/// @dev Renewal can be called while owning a subdomain or while the name is in the
/// grace period. Can only be called by a controller.
Expand Down Expand Up @@ -376,7 +376,7 @@ contract BaseRegistrar is ERC721, Ownable {
return _collectionURI;
}

/// @dev Allows the owner to set the the base Uniform Resource Identifier (URI)`.
/// @dev Allows the owner to set the base Uniform Resource Identifier (URI)`.
/// Emits the `BatchMetadataUpdate` event for the full range of valid `tokenIds`.
function setBaseTokenURI(string memory baseURI_) public onlyOwner {
_baseURI = baseURI_;
Expand All @@ -386,7 +386,7 @@ contract BaseRegistrar is ERC721, Ownable {
emit BatchMetadataUpdate(minTokenId, maxTokenId);
}

/// @dev Allows the owner to set the the contract Uniform Resource Identifier (URI)`.
/// @dev Allows the owner to set the contract Uniform Resource Identifier (URI)`.
/// Emits the `ContractURIUpdated` event.
function setContractURI(string memory collectionURI_) public onlyOwner {
_collectionURI = collectionURI_;
Expand Down