Skip to content

Commit

Permalink
fix: typos in documentation files (#1430)
Browse files Browse the repository at this point in the history
  • Loading branch information
kilavvy authored Mar 3, 2025
1 parent 45a596a commit a5473fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/context/useGaslessVoting.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const useGaslessVoting = () => {
}
);

// 2. Sumbit vote
// 2. Submit vote
await doStep(GaslessVotingStepId.PUBLISH_VOTE, async () => {
await submitVote(vote, electionId);
});
Expand Down
2 changes: 1 addition & 1 deletion src/services/aragon-sdk/selectors/proposal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ export function computeTokenVotingProposalStatus(
if (proposal.approvalReached && endDate <= now) {
return ProposalStatus.SUCCEEDED;
}
// In early exeuction mode, we calculate if subsequent voting can change the result of the vote.
// In early execution mode, we calculate if subsequent voting can change the result of the vote.
// If not, the proposal is early executable and is therefore succeeded as well.
if (proposal.earlyExecutable) {
return ProposalStatus.SUCCEEDED;
Expand Down

0 comments on commit a5473fe

Please sign in to comment.