From 3a91858fc0707de8af8ea6337c560999003592ec Mon Sep 17 00:00:00 2001 From: Pablo Maldonado Date: Mon, 17 Jun 2024 15:08:59 +0100 Subject: [PATCH] fix[oval-audit-n-10]: Typographical Errors Signed-off-by: Pablo Maldonado --- src/controllers/MutableUnlockersController.sol | 2 +- src/factories/PermissionProxy.sol | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/controllers/MutableUnlockersController.sol b/src/controllers/MutableUnlockersController.sol index a7acf13..8fbb980 100644 --- a/src/controllers/MutableUnlockersController.sol +++ b/src/controllers/MutableUnlockersController.sol @@ -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. diff --git a/src/factories/PermissionProxy.sol b/src/factories/PermissionProxy.sol index dbd9a75..03282b1 100644 --- a/src/factories/PermissionProxy.sol +++ b/src/factories/PermissionProxy.sol @@ -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 {