From 13c5dded19bcdffd033b58fc6173615a9830a6df Mon Sep 17 00:00:00 2001 From: katzman Date: Mon, 22 Jul 2024 10:06:32 -0700 Subject: [PATCH] Fix typos in L2Resolver and ReverseRegistrar natspec --- src/L2/L2Resolver.sol | 2 +- src/L2/ReverseRegistrar.sol | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/L2/L2Resolver.sol b/src/L2/L2Resolver.sol index 2352365c..bdf53e1e 100644 --- a/src/L2/L2Resolver.sol +++ b/src/L2/L2Resolver.sol @@ -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: diff --git a/src/L2/ReverseRegistrar.sol b/src/L2/ReverseRegistrar.sol index 89eb3bf5..1d2db50e 100644 --- a/src/L2/ReverseRegistrar.sol +++ b/src/L2/ReverseRegistrar.sol @@ -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. @@ -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.