@@ -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 */
143143function 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 */
261261function 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 */
400400function tryGet(
0 commit comments