From 2de5e1bb10fa448cd9281ef23dffe657a35598d2 Mon Sep 17 00:00:00 2001 From: Spablob Date: Sun, 18 Feb 2024 13:25:27 -0800 Subject: [PATCH] additional lint fix --- .../interfaces/modules/royalty/policies/IRoyaltyPolicyLAP.sol | 4 ++-- .../modules/royalty-module/policies/RoyaltyPolicyLAP.sol | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/interfaces/modules/royalty/policies/IRoyaltyPolicyLAP.sol b/contracts/interfaces/modules/royalty/policies/IRoyaltyPolicyLAP.sol index 1be4b067..c0c7ac7c 100644 --- a/contracts/interfaces/modules/royalty/policies/IRoyaltyPolicyLAP.sol +++ b/contracts/interfaces/modules/royalty/policies/IRoyaltyPolicyLAP.sol @@ -37,7 +37,7 @@ interface IRoyaltyPolicyLAP is IRoyaltyPolicy { /// @return isUnlinkable Indicates if the ipId is unlinkable to new parents /// @return splitClone The address of the liquid split clone contract for a given ipId /// @return ancestorsVault The address of the ancestors vault contract for a given ipId - /// @return royaltyStack The royalty stack for a given ipId is the sum of the royalties to be paid to all its ancestors + /// @return royaltyStack The royalty stack of a given ipId is the sum of the royalties to be paid to each ancestors /// @return ancestorsHash The hash of the unique ancestors addresses and royalties arrays function royaltyData( address ipId @@ -107,7 +107,7 @@ interface IRoyaltyPolicyLAP is IRoyaltyPolicy { /// @param token The token to withdraw function claimFromIpPoolAsTotalRnftOwner(address ipId, uint256 withdrawETH, address token) external; - /// @notice Claims all available royalty nfts and accrued royalties for an ancestor of a given ipId + /// @notice Claims available royalty nfts and accrued royalties for an ancestor of a given ipId /// @param ipId The ipId of the ancestors vault to claim from /// @param claimerIpId The claimer ipId is the ancestor address that wants to claim /// @param ancestors The ancestors for the selected ipId diff --git a/contracts/modules/royalty-module/policies/RoyaltyPolicyLAP.sol b/contracts/modules/royalty-module/policies/RoyaltyPolicyLAP.sol index 84e6b6bc..8ba90865 100644 --- a/contracts/modules/royalty-module/policies/RoyaltyPolicyLAP.sol +++ b/contracts/modules/royalty-module/policies/RoyaltyPolicyLAP.sol @@ -27,7 +27,7 @@ contract RoyaltyPolicyLAP is IRoyaltyPolicyLAP, Governable, ERC1155Holder, Reent /// @param isUnlinkableToParents Indicates if the ipId is unlinkable to new parents /// @param splitClone The address of the liquid split clone contract for a given ipId /// @param ancestorsVault The address of the ancestors vault contract for a given ipId - /// @param royaltyStack The royalty stack for a given ipId is the sum of the royalties to be paid to all its ancestors + /// @param royaltyStack The royalty stack of a given ipId is the sum of the royalties to be paid to each ancestors /// @param ancestorsHash The hash of the unique ancestors addresses and royalties arrays struct LAPRoyaltyData { bool isUnlinkableToParents;