diff --git a/contracts/src/executors/Executor.sol b/contracts/src/executors/Executor.sol index eb1cd458..52e62884 100644 --- a/contracts/src/executors/Executor.sol +++ b/contracts/src/executors/Executor.sol @@ -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 sirt@aragon.org diff --git a/contracts/src/plugin/extensions/proposal/IProposal.sol b/contracts/src/plugin/extensions/proposal/IProposal.sol index be6bb523..f0d20339 100644 --- a/contracts/src/plugin/extensions/proposal/IProposal.sol +++ b/contracts/src/plugin/extensions/proposal/IProposal.sol @@ -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.