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
2 changes: 1 addition & 1 deletion src/L2/EARegistrarController.sol
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ contract EARegistrarController is Ownable {
uint256 duration;
/// @dev The address of the resolver to set for this name.
address resolver;
/// @dev Multicallable data bytes for setting records in the associated resolver upon reigstration.
/// @dev Multicallable data bytes for setting records in the associated resolver upon registration.
bytes[] data;
/// @dev Bool to decide whether to set this name as the "primary" name for the `owner`.
bool reverseRecord;
Expand Down
4 changes: 2 additions & 2 deletions src/L2/L2Resolver.sol
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ contract L2Resolver is
/* ERRORS */
/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

/// @notice Thown when msg.sender tries to set itself as an operator.
/// @notice Thrown when msg.sender tries to set itself as an operator.
error CantSetSelfAsOperator();

/// @notice Thrown when msg.sender tries to set itself as a delegate for one of its names.
Expand All @@ -90,7 +90,7 @@ contract L2Resolver is
/// @param approved Whether the `delegate` is approved for the specified `node`.
event Approved(address owner, bytes32 indexed node, address indexed delegate, bool indexed approved);

/// @notice Emitted when the owner of this contract updates the Registrar Controller addrress.
/// @notice Emitted when the owner of this contract updates the Registrar Controller address.
///
/// @param newRegistrarController The address of the new RegistrarController contract.
event RegistrarControllerUpdated(address indexed newRegistrarController);
Expand Down
2 changes: 1 addition & 1 deletion src/L2/RegistrarController.sol
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ contract RegistrarController is Ownable {
uint256 duration;
/// @dev The address of the resolver to set for this name.
address resolver;
/// @dev Multicallable data bytes for setting records in the associated resolver upon reigstration.
/// @dev Multicallable data bytes for setting records in the associated resolver upon registration.
bytes[] data;
/// @dev Bool to decide whether to set this name as the "primary" name for the `owner`.
bool reverseRecord;
Expand Down