Skip to content

Commit b61ef3a

Browse files
authored
Small text changes from cgewecke review
1 parent 5321ec0 commit b61ef3a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contracts/manager/DelegatedManager.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ contract DelegatedManager is Ownable {
112112
}
113113

114114
/**
115-
* Throws if the sender is not a listed extension
115+
* Throws if the sender is not an initialized extension
116116
*/
117117
modifier onlyExtension() {
118118
require(extensionAllowlist[msg.sender] == ExtensionState.INITIALIZED, "Must be initialized extension");
@@ -127,7 +127,7 @@ contract DelegatedManager is Ownable {
127127
// Address of factory contract used to deploy contract
128128
address public immutable factory;
129129

130-
// Mapping to check which ExtensionState an given extension is in
130+
// Mapping to check which ExtensionState a given extension is in
131131
mapping(address => ExtensionState) public extensionAllowlist;
132132

133133
// Array of initialized extensions
@@ -197,7 +197,7 @@ contract DelegatedManager is Ownable {
197197
}
198198

199199
/**
200-
* OPERATOR ONLY: Transfers _tokens held by the manager to _destination. Can be used to
200+
* EXTENSION ONLY: Transfers _tokens held by the manager to _destination. Can be used to
201201
* distribute fees or recover anything sent here accidentally.
202202
*
203203
* @param _token ERC20 token to send

0 commit comments

Comments
 (0)