Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ contract TwoStepAdministeredUpgradeable is
emit AdministratorUpdated(msg.sender, newAdministrator);
}

///@notice Acept administration of smart contract, after the current administrator has initiated the process with transferAdministration
///@notice Accept administration of smart contract, after the current administrator has initiated the process with transferAdministration
function acceptAdministration() public virtual {
address _potentialAdministrator = TwoStepAdministeredStorage
.layout()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ contract ERC721A is IERC721A {
// Invariant:
// There will always be an initialized ownership slot
// (i.e. `ownership.addr != address(0) && ownership.burned == false`)
// before an unintialized ownership slot
// before an uninitialized ownership slot
// (i.e. `ownership.addr == address(0) && ownership.burned == false`)
// Hence, `curr` will not underflow.
//
Expand Down Expand Up @@ -668,7 +668,7 @@ contract ERC721A is IERC721A {

// Updates:
// - `address` to the next owner.
// - `startTimestamp` to the timestamp of transfering.
// - `startTimestamp` to the timestamp of transferring.
// - `burned` to `false`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] = _packOwnershipData(
Expand Down