From ae5f02eb6f0e65d59d25bc4fa7c4cabfb2ca1b6e Mon Sep 17 00:00:00 2001 From: mmackz Date: Tue, 10 Sep 2024 16:53:44 -0700 Subject: [PATCH] docs(QuestBudget): fix comment formatting in payManagementFee --- contracts/QuestBudget.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/QuestBudget.sol b/contracts/QuestBudget.sol index f7566d66..307e35aa 100644 --- a/contracts/QuestBudget.sol +++ b/contracts/QuestBudget.sol @@ -232,8 +232,8 @@ contract QuestBudget is Budget, IERC1155Receiver, ReentrancyGuard { } /// @notice Allows the quest manager to claim the management fee for a completed quest -/// @dev This function can only be called by the authorized quest manager after the quest rewards have been withdrawn -/// @param questId_ The unique identifier of the quest for which the management fee is being claimed + /// @dev This function can only be called by the authorized quest manager after the quest rewards have been withdrawn + /// @param questId_ The unique identifier of the quest for which the management fee is being claimed function payManagementFee(string memory questId_) public onlyAuthorized { // Retrieve the quest data by calling the questData function and decoding the result IQuestFactory.QuestData memory quest = IQuestFactory(questFactory).questData(questId_);