Skip to content

Commit

Permalink
Fix typos in L2Resolver and ReverseRegistrar natspec
Browse files Browse the repository at this point in the history
  • Loading branch information
stevieraykatz committed Jul 22, 2024
1 parent 9d4d4dd commit 13c5dde
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/L2/L2Resolver.sol
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ contract L2Resolver is
return _tokenApprovals[owner][node][delegate];
}

/// @notice Check to see whether `msg.sender` is authroized to modify records for the specified `node`.
/// @notice Check to see whether `msg.sender` is authorized to modify records for the specified `node`.
///
/// @dev Override for `ResolverBase:isAuthorised()`. Used in the context of each inherited resolver "profile".
/// Validates that `msg.sender` is one of:
Expand Down
4 changes: 2 additions & 2 deletions src/L2/ReverseRegistrar.sol
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ contract ReverseRegistrar is Ownable {
/* ERRORS */
/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

/// @notice Thrown when `sender` is not authrorized to modify records for `addr`.
/// @notice Thrown when `sender` is not authorized to modify records for `addr`.
///
/// @param addr The `addr` that was being modified.
/// @param sender The unauthorized sender.
Expand Down Expand Up @@ -201,7 +201,7 @@ contract ReverseRegistrar is Ownable {

/// @notice Sets the `name()` record for the reverse ENS records associated with the `addr` provided.
///
/// @dev Updates the resolver to a designated resolver. Only callable by `addr`'s `authroized` addresses.
/// @dev Updates the resolver to a designated resolver. Only callable by `addr`'s `authorized` addresses.
/// Establishes both a vestigial `addr.reverse` node and an ENSIP-19 compliant chain-specific `chain.reverse` node.
///
/// @param addr The reverse record to set.
Expand Down

0 comments on commit 13c5dde

Please sign in to comment.