File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ interface IAccessManager {
123
123
124
124
/**
125
125
* @dev Minimum setback for all delay updates, with the exception of execution delays. It
126
- * can be increased without setback (and reset via {revokeRole} in the case event of an
126
+ * can be increased without setback (and reset via {revokeRole} in the event of an
127
127
* accidental increase). Defaults to 5 days.
128
128
*/
129
129
function minSetback () external view returns (uint32 );
@@ -170,7 +170,7 @@ interface IAccessManager {
170
170
171
171
/**
172
172
* @dev Get the access details for a given account for a given role. These details include the timepoint at which
173
- * membership becomes active, and the delay applied to all operation by this user that requires this permission
173
+ * membership becomes active, and the delay applied to all operations by this user that requires this permission
174
174
* level.
175
175
*
176
176
* Returns:
@@ -376,7 +376,7 @@ interface IAccessManager {
376
376
* @dev Consume a scheduled operation targeting the caller. If such an operation exists, mark it as consumed
377
377
* (emit an {OperationExecuted} event and clean the state). Otherwise, throw an error.
378
378
*
379
- * This is useful for contract that want to enforce that calls targeting them were scheduled on the manager,
379
+ * This is useful for contracts that want to enforce that calls targeting them were scheduled on the manager,
380
380
* with all the verifications that it implies.
381
381
*
382
382
* Emit a {OperationExecuted} event.
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ library EIP7702Utils {
12
12
bytes3 internal constant EIP7702_PREFIX = 0xef0100 ;
13
13
14
14
/**
15
- * @dev Returns the address of the delegate if `account` as an EIP-7702 delegation setup, or address(0) otherwise.
15
+ * @dev Returns the address of the delegate if `account` has an EIP-7702 delegation setup, or address(0) otherwise.
16
16
*/
17
17
function fetchDelegate (address account ) internal view returns (address ) {
18
18
bytes23 delegation = bytes23 (account.code);
You can’t perform that action at this time.
0 commit comments