From 2abb751c90ca3517141deb1d852a35ebb036070e Mon Sep 17 00:00:00 2001 From: Jesus Lanchas Date: Wed, 20 Sep 2023 13:21:46 +0200 Subject: [PATCH] fix: PTP-05 | Missing And Incomplete NatSpec Comments --- contracts/Tokens/Prime/Prime.sol | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/contracts/Tokens/Prime/Prime.sol b/contracts/Tokens/Prime/Prime.sol index 1c261b701..68629fb11 100644 --- a/contracts/Tokens/Prime/Prime.sol +++ b/contracts/Tokens/Prime/Prime.sol @@ -280,7 +280,7 @@ contract Prime is IIncomeDestination, AccessControlledV8, PausableUpgradeable, M /** * @notice Retrieves an array of all available markets - * @return markets an array of addresses representing all available markets + * @return an array of addresses representing all available markets */ function getAllMarkets() external view returns (address[] memory) { return allMarkets; @@ -288,7 +288,7 @@ contract Prime is IIncomeDestination, AccessControlledV8, PausableUpgradeable, M /** * @notice accrues interes and updates score of all markets for an user - * @return user the account address for which to accrue interest and update score + * @param user the account address for which to accrue interest and update score */ function _accrueInterestAndUpdateScore(address user) internal { address[] storage _allMarkets = allMarkets; @@ -304,8 +304,8 @@ contract Prime is IIncomeDestination, AccessControlledV8, PausableUpgradeable, M /** * @notice accrues interes and updates score for an user for a specific market - * @return user the account address for which to accrue interest and update score - * @return market the market for which to accrue interest and update score + * @param user the account address for which to accrue interest and update score + * @param market the market for which to accrue interest and update score */ function accrueInterestAndUpdateScore(address user, address market) public { _executeBoost(user, market);