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

N-10 [Oval] Typographical Errors #23

Merged
merged 1 commit into from
Jun 18, 2024
Merged
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/controllers/MutableUnlockersController.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {Ownable} from "openzeppelin-contracts/contracts/access/Ownable.sol";
import {Oval} from "../Oval.sol";

/**
* @title MutableUnlockersController is a controller that only allows unlockers to be change, but other params are immutable.
* @title MutableUnlockersController is a controller that only allows unlockers to be changed, but other params are immutable.
*/
abstract contract MutableUnlockersController is Ownable, Oval {
// these don't need to be public since they can be accessed via the accessor functions below.
Expand Down
4 changes: 2 additions & 2 deletions src/factories/PermissionProxy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import {Ownable} from "openzeppelin-contracts/contracts/access/Ownable.sol";
import {Multicall} from "openzeppelin-contracts/contracts/utils/Multicall.sol";

/**
* @title PermissionProxy is a proxy that allows extends the permissions given to it to a configurable set
* @title PermissionProxy is a proxy that extends the permissions given to it to a configurable set
* of addresses.
* @dev The intended use case for this contract is to add this as a single unlocker to oval contracts, allowing the
* @dev The intended use case for this contract is to add this as a single unlocker to Oval contracts, allowing the
* owner of this contract to delegate that permission to many different unlocker addresses.
*/
contract PermissionProxy is Ownable, Multicall {
Expand Down
Loading