@@ -137,7 +137,7 @@ function at(Bytes32ToBytes32Map storage map, uint256 index) internal view return
137
137
}
138
138
139
139
/**
140
- * @dev Tries to returns the value associated with \`key\`. O(1).
140
+ * @dev Tries to return the value associated with \`key\`. O(1).
141
141
* Does not revert if \`key\` is not in the map.
142
142
*/
143
143
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
255
255
}
256
256
257
257
/**
258
- * @dev Tries to returns the value associated with \`key\`. O(1).
258
+ * @dev Tries to return the value associated with \`key\`. O(1).
259
259
* Does not revert if \`key\` is not in the map.
260
260
*/
261
261
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
275
275
}
276
276
277
277
/**
278
- * @dev Return the an array containing all the keys
278
+ * @dev Returns an array containing all the keys
279
279
*
280
280
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
281
281
* 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)
294
294
}
295
295
296
296
/**
297
- * @dev Return the an array containing a slice of the keys
297
+ * @dev Returns an array containing a slice of the keys
298
298
*
299
299
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
300
300
* 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(
394
394
}
395
395
396
396
/**
397
- * @dev Tries to returns the value associated with \`key\`. O(1).
397
+ * @dev Tries to return the value associated with \`key\`. O(1).
398
398
* Does not revert if \`key\` is not in the map.
399
399
*/
400
400
function tryGet(
0 commit comments