Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
novaknole committed Nov 14, 2024
1 parent 78155f9 commit 184bfbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/src/executors/Executor.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {flipBit, hasBit} from "../utils/math/BitMap.sol";
/// @author Aragon X - 2024
/// @notice Simple Executor that loops through the actions and executes them.
/// @dev This doesn't use any type of permission for execution and can be called by anyone.
/// Most useful use-case is to deploy as non-upgradeable and call from another contract via delegatecall.
/// Most useful use-case is to deploy it as non-upgradeable and call from another contract via delegatecall.
/// If used with delegatecall, DO NOT add state variables in sequential slots, otherwise this will overwrite
/// the storage of the calling contract.
/// @custom:security-contact [email protected]
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/plugin/extensions/proposal/IProposal.sol
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ interface IProposal {
/// @return abi ABI of params in `data` of `createProposal`.
function customProposalParamsABI() external view returns (string memory abi);

/// @notice Returns the proposal count, which determines the next proposal ID.
/// @notice Returns the proposal count which determines the next proposal ID.
/// @dev This function is deprecated but remains in the interface for backward compatibility.
/// It now reverts to prevent ambiguity.
/// @return The proposal count.
Expand Down

0 comments on commit 184bfbe

Please sign in to comment.