@@ -266,28 +266,28 @@ abstract contract ProvisionManager is Initializable, GraphDirectory, ProvisionMa
266
266
267
267
/**
268
268
* @notice Gets the range for the provision tokens.
269
- * @return min The minimum allowed value for the provision tokens.
270
- * @return max The maximum allowed value for the provision tokens.
269
+ * @return The minimum allowed value for the provision tokens.
270
+ * @return The maximum allowed value for the provision tokens.
271
271
*/
272
- function _getProvisionTokensRange () internal view virtual returns (uint256 min , uint256 max ) {
272
+ function _getProvisionTokensRange () internal view virtual returns (uint256 , uint256 ) {
273
273
return (_minimumProvisionTokens, _maximumProvisionTokens);
274
274
}
275
275
276
276
/**
277
277
* @notice Gets the range for the thawing period.
278
- * @return min The minimum allowed value for the thawing period.
279
- * @return max The maximum allowed value for the thawing period.
278
+ * @return The minimum allowed value for the thawing period.
279
+ * @return The maximum allowed value for the thawing period.
280
280
*/
281
- function _getThawingPeriodRange () internal view virtual returns (uint64 min , uint64 max ) {
281
+ function _getThawingPeriodRange () internal view virtual returns (uint64 , uint64 ) {
282
282
return (_minimumThawingPeriod, _maximumThawingPeriod);
283
283
}
284
284
285
285
/**
286
286
* @notice Gets the range for the verifier cut.
287
- * @return min The minimum allowed value for the max verifier cut.
288
- * @return max The maximum allowed value for the max verifier cut.
287
+ * @return The minimum allowed value for the max verifier cut.
288
+ * @return The maximum allowed value for the max verifier cut.
289
289
*/
290
- function _getVerifierCutRange () internal view virtual returns (uint32 min , uint32 max ) {
290
+ function _getVerifierCutRange () internal view virtual returns (uint32 , uint32 ) {
291
291
return (_minimumVerifierCut, _maximumVerifierCut);
292
292
}
293
293
0 commit comments