@@ -136,7 +136,7 @@ library EnumerableMap {
136
136
}
137
137
138
138
/**
139
- * @dev Tries to returns the value associated with `key`. O(1).
139
+ * @dev Tries to return the value associated with `key`. O(1).
140
140
* Does not revert if `key` is not in the map.
141
141
*/
142
142
function tryGet (Bytes32ToBytes32Map storage map , bytes32 key ) internal view returns (bool exists , bytes32 value ) {
@@ -256,7 +256,7 @@ library EnumerableMap {
256
256
}
257
257
258
258
/**
259
- * @dev Tries to returns the value associated with `key`. O(1).
259
+ * @dev Tries to return the value associated with `key`. O(1).
260
260
* Does not revert if `key` is not in the map.
261
261
*/
262
262
function tryGet (UintToUintMap storage map , uint256 key ) internal view returns (bool exists , uint256 value ) {
@@ -276,7 +276,7 @@ library EnumerableMap {
276
276
}
277
277
278
278
/**
279
- * @dev Return the an array containing all the keys
279
+ * @dev Returns an array containing all the keys
280
280
*
281
281
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
282
282
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
@@ -295,7 +295,7 @@ library EnumerableMap {
295
295
}
296
296
297
297
/**
298
- * @dev Return the an array containing a slice of the keys
298
+ * @dev Returns an array containing a slice of the keys
299
299
*
300
300
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
301
301
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
@@ -378,7 +378,7 @@ library EnumerableMap {
378
378
}
379
379
380
380
/**
381
- * @dev Tries to returns the value associated with `key`. O(1).
381
+ * @dev Tries to return the value associated with `key`. O(1).
382
382
* Does not revert if `key` is not in the map.
383
383
*/
384
384
function tryGet (UintToAddressMap storage map , uint256 key ) internal view returns (bool exists , address value ) {
@@ -398,7 +398,7 @@ library EnumerableMap {
398
398
}
399
399
400
400
/**
401
- * @dev Return the an array containing all the keys
401
+ * @dev Returns an array containing all the keys
402
402
*
403
403
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
404
404
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
@@ -417,7 +417,7 @@ library EnumerableMap {
417
417
}
418
418
419
419
/**
420
- * @dev Return the an array containing a slice of the keys
420
+ * @dev Returns an array containing a slice of the keys
421
421
*
422
422
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
423
423
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
@@ -500,7 +500,7 @@ library EnumerableMap {
500
500
}
501
501
502
502
/**
503
- * @dev Tries to returns the value associated with `key`. O(1).
503
+ * @dev Tries to return the value associated with `key`. O(1).
504
504
* Does not revert if `key` is not in the map.
505
505
*/
506
506
function tryGet (UintToBytes32Map storage map , uint256 key ) internal view returns (bool exists , bytes32 value ) {
@@ -520,7 +520,7 @@ library EnumerableMap {
520
520
}
521
521
522
522
/**
523
- * @dev Return the an array containing all the keys
523
+ * @dev Returns an array containing all the keys
524
524
*
525
525
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
526
526
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
@@ -539,7 +539,7 @@ library EnumerableMap {
539
539
}
540
540
541
541
/**
542
- * @dev Return the an array containing a slice of the keys
542
+ * @dev Returns an array containing a slice of the keys
543
543
*
544
544
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
545
545
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
@@ -622,7 +622,7 @@ library EnumerableMap {
622
622
}
623
623
624
624
/**
625
- * @dev Tries to returns the value associated with `key`. O(1).
625
+ * @dev Tries to return the value associated with `key`. O(1).
626
626
* Does not revert if `key` is not in the map.
627
627
*/
628
628
function tryGet (AddressToUintMap storage map , address key ) internal view returns (bool exists , uint256 value ) {
@@ -642,7 +642,7 @@ library EnumerableMap {
642
642
}
643
643
644
644
/**
645
- * @dev Return the an array containing all the keys
645
+ * @dev Returns an array containing all the keys
646
646
*
647
647
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
648
648
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
@@ -661,7 +661,7 @@ library EnumerableMap {
661
661
}
662
662
663
663
/**
664
- * @dev Return the an array containing a slice of the keys
664
+ * @dev Returns an array containing a slice of the keys
665
665
*
666
666
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
667
667
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
@@ -744,7 +744,7 @@ library EnumerableMap {
744
744
}
745
745
746
746
/**
747
- * @dev Tries to returns the value associated with `key`. O(1).
747
+ * @dev Tries to return the value associated with `key`. O(1).
748
748
* Does not revert if `key` is not in the map.
749
749
*/
750
750
function tryGet (AddressToAddressMap storage map , address key ) internal view returns (bool exists , address value ) {
@@ -764,7 +764,7 @@ library EnumerableMap {
764
764
}
765
765
766
766
/**
767
- * @dev Return the an array containing all the keys
767
+ * @dev Returns an array containing all the keys
768
768
*
769
769
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
770
770
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
@@ -783,7 +783,7 @@ library EnumerableMap {
783
783
}
784
784
785
785
/**
786
- * @dev Return the an array containing a slice of the keys
786
+ * @dev Returns an array containing a slice of the keys
787
787
*
788
788
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
789
789
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
@@ -870,7 +870,7 @@ library EnumerableMap {
870
870
}
871
871
872
872
/**
873
- * @dev Tries to returns the value associated with `key`. O(1).
873
+ * @dev Tries to return the value associated with `key`. O(1).
874
874
* Does not revert if `key` is not in the map.
875
875
*/
876
876
function tryGet (AddressToBytes32Map storage map , address key ) internal view returns (bool exists , bytes32 value ) {
@@ -890,7 +890,7 @@ library EnumerableMap {
890
890
}
891
891
892
892
/**
893
- * @dev Return the an array containing all the keys
893
+ * @dev Returns an array containing all the keys
894
894
*
895
895
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
896
896
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
@@ -909,7 +909,7 @@ library EnumerableMap {
909
909
}
910
910
911
911
/**
912
- * @dev Return the an array containing a slice of the keys
912
+ * @dev Returns an array containing a slice of the keys
913
913
*
914
914
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
915
915
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
@@ -996,7 +996,7 @@ library EnumerableMap {
996
996
}
997
997
998
998
/**
999
- * @dev Tries to returns the value associated with `key`. O(1).
999
+ * @dev Tries to return the value associated with `key`. O(1).
1000
1000
* Does not revert if `key` is not in the map.
1001
1001
*/
1002
1002
function tryGet (Bytes32ToUintMap storage map , bytes32 key ) internal view returns (bool exists , uint256 value ) {
@@ -1016,7 +1016,7 @@ library EnumerableMap {
1016
1016
}
1017
1017
1018
1018
/**
1019
- * @dev Return the an array containing all the keys
1019
+ * @dev Returns an array containing all the keys
1020
1020
*
1021
1021
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
1022
1022
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
@@ -1035,7 +1035,7 @@ library EnumerableMap {
1035
1035
}
1036
1036
1037
1037
/**
1038
- * @dev Return the an array containing a slice of the keys
1038
+ * @dev Returns an array containing a slice of the keys
1039
1039
*
1040
1040
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
1041
1041
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
@@ -1118,7 +1118,7 @@ library EnumerableMap {
1118
1118
}
1119
1119
1120
1120
/**
1121
- * @dev Tries to returns the value associated with `key`. O(1).
1121
+ * @dev Tries to return the value associated with `key`. O(1).
1122
1122
* Does not revert if `key` is not in the map.
1123
1123
*/
1124
1124
function tryGet (Bytes32ToAddressMap storage map , bytes32 key ) internal view returns (bool exists , address value ) {
@@ -1138,7 +1138,7 @@ library EnumerableMap {
1138
1138
}
1139
1139
1140
1140
/**
1141
- * @dev Return the an array containing all the keys
1141
+ * @dev Returns an array containing all the keys
1142
1142
*
1143
1143
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
1144
1144
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
@@ -1157,7 +1157,7 @@ library EnumerableMap {
1157
1157
}
1158
1158
1159
1159
/**
1160
- * @dev Return the an array containing a slice of the keys
1160
+ * @dev Returns an array containing a slice of the keys
1161
1161
*
1162
1162
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
1163
1163
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
@@ -1259,7 +1259,7 @@ library EnumerableMap {
1259
1259
}
1260
1260
1261
1261
/**
1262
- * @dev Tries to returns the value associated with `key`. O(1).
1262
+ * @dev Tries to return the value associated with `key`. O(1).
1263
1263
* Does not revert if `key` is not in the map.
1264
1264
*/
1265
1265
function tryGet (
0 commit comments