Skip to content

Commit 73cfbce

Browse files
Transpile e1277f7ad
1 parent a21e52d commit 73cfbce

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

contracts/utils/cryptography/signers/MultiSignerERC7913Upgradeable.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ abstract contract MultiSignerERC7913Upgradeable is Initializable, AbstractSigner
244244

245245
/**
246246
* @dev Validates the signatures using the signers and their corresponding signatures.
247-
* Returns whether whether the signers are authorized and the signatures are valid for the given hash.
247+
* Returns whether the signers are authorized and the signatures are valid for the given hash.
248248
*
249249
* IMPORTANT: Sorting the signers by their `keccak256` hash will improve the gas efficiency of this function.
250250
* See {SignatureChecker-areValidSignaturesNow-bytes32-bytes[]-bytes[]} for more details.

scripts/generate/templates/EnumerableMap.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ function at(Bytes32ToBytes32Map storage map, uint256 index) internal view return
137137
}
138138
139139
/**
140-
* @dev Tries to returns the value associated with \`key\`. O(1).
140+
* @dev Tries to return the value associated with \`key\`. O(1).
141141
* Does not revert if \`key\` is not in the map.
142142
*/
143143
function tryGet(Bytes32ToBytes32Map storage map, bytes32 key) internal view returns (bool exists, bytes32 value) {
@@ -255,7 +255,7 @@ function at(${name} storage map, uint256 index) internal view returns (${key.typ
255255
}
256256
257257
/**
258-
* @dev Tries to returns the value associated with \`key\`. O(1).
258+
* @dev Tries to return the value associated with \`key\`. O(1).
259259
* Does not revert if \`key\` is not in the map.
260260
*/
261261
function tryGet(${name} storage map, ${key.type} key) internal view returns (bool exists, ${value.type} value) {
@@ -275,7 +275,7 @@ function get(${name} storage map, ${key.type} key) internal view returns (${valu
275275
}
276276
277277
/**
278-
* @dev Return the an array containing all the keys
278+
* @dev Returns an array containing all the keys
279279
*
280280
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
281281
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
@@ -294,7 +294,7 @@ function keys(${name} storage map) internal view returns (${key.type}[] memory)
294294
}
295295
296296
/**
297-
* @dev Return the an array containing a slice of the keys
297+
* @dev Returns an array containing a slice of the keys
298298
*
299299
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
300300
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
@@ -394,7 +394,7 @@ function at(
394394
}
395395
396396
/**
397-
* @dev Tries to returns the value associated with \`key\`. O(1).
397+
* @dev Tries to return the value associated with \`key\`. O(1).
398398
* Does not revert if \`key\` is not in the map.
399399
*/
400400
function tryGet(

0 commit comments

Comments
 (0)