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

Fix minor doc comment typos in L2Resolver and Registry #119

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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/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 Down
2 changes: 1 addition & 1 deletion src/L2/Registry.sol
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ contract Registry is ENS {
/// @param owner_ The address that owns the records.
/// @param operator The address that acts on behalf of the owner.
///
/// @return `true` if `operator` is an approved operator for `owner`, else `fase`.
/// @return `true` if `operator` is an approved operator for `owner`, else `false`.
function isApprovedForAll(address owner_, address operator) external view virtual override returns (bool) {
return _operators[owner_][operator];
}
Expand Down