Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrected natspec #13

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/interfaces/Franchiser/IFranchiser.sol
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ interface IFranchiser is IFranchiserErrors, IFranchiserEvents {
) external returns (Franchiser[] memory franchisers);

/// @notice Delegates `amount` of `votingToken` to `subDelegatee`.
/// @dev Can only be called by the `delegatee`. The Franchiser associated
/// with the `subDelegatee` must not already be active.
/// @dev Can only be called by the `delegatee`. If the Franchiser associated
/// with the `subDelegatee` is already active, it will receive the sub-delegation.
/// @param subDelegatee The address that will receive voting power.
/// @param amount The amount of voting power.
/// @return franchiser The Franchiser contract.
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/FranchiserFactory/IFranchiserFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ interface IFranchiserFactory is
bytes32 s
) external returns (Franchiser franchiser);

/// @notice Calls permitAndFund many times.
/// @notice Calls fund many times after calling permit for total of given amounts.
/// @dev The permit must be for the sum of `amounts`.
/// @param delegatees The target `delegatees`.
/// @param amounts The amounts of `votingToken` to allocate.
Expand Down