From ed1a44f0c9b44a1cafcf33ee9485f90040c759ca Mon Sep 17 00:00:00 2001 From: Dmitri Tsumak Date: Thu, 20 Jun 2024 19:13:29 +0300 Subject: [PATCH] Fix reward splitter docstring --- contracts/interfaces/IRewardSplitter.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/interfaces/IRewardSplitter.sol b/contracts/interfaces/IRewardSplitter.sol index c8644cc9..e1e6288d 100644 --- a/contracts/interfaces/IRewardSplitter.sol +++ b/contracts/interfaces/IRewardSplitter.sol @@ -81,15 +81,15 @@ interface IRewardSplitter is IMulticall { /** * @notice Retrieves the amount of splitter shares for the given account. - The shares are used to calculate the amount of rewards the account is entitled to. + * The shares are used to calculate the amount of rewards the account is entitled to. * @param account The address of the account to get shares for */ function sharesOf(address account) external view returns (uint256); /** * @notice Retrieves the amount of rewards the account is entitled to. - The rewards are calculated based on the amount of shares the account has. - Note, rewards must be synced using the `syncRewards` function. + * The rewards are calculated based on the amount of shares the account has. + * Note, rewards must be synced using the `syncRewards` function. * @param account The address of the account to get rewards for */ function rewardsOf(address account) external view returns (uint256);