Skip to content
This repository has been archived by the owner on Oct 17, 2022. It is now read-only.

Commit

Permalink
A tiny typo fix (#762)
Browse files Browse the repository at this point in the history
  • Loading branch information
zupo authored and alexvansande committed Jan 4, 2018
1 parent b818c95 commit 8789683
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions dist/dao.html
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ <h4>The code</h4>
/**
* Change voting rules
*
* Make so that proposals need tobe discussed for at least `minutesForDebate/60` hours,
* Make so that proposals need to be discussed for at least `minutesForDebate/60` hours,
* have at least `minimumQuorumForProposals` votes, and have 50% + `marginOfVotesForMajority` votes to be executed
*
* @param minimumQuorumForProposals how many members must vote on a proposal for it to be executed
Expand Down Expand Up @@ -465,7 +465,7 @@ <h3>The Shareholder Association</h3>
/**
* Change voting rules
*
* Make so that proposals need tobe discussed for at least `minutesForDebate/60` hours
* Make so that proposals need to be discussed for at least `minutesForDebate/60` hours
* and all voters combined must own more than `minimumSharesToPassAVote` shares of token `sharesAddress` to be executed
*
* @param sharesAddress token address
Expand Down
2 changes: 1 addition & 1 deletion solidity/dao-association.sol
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ contract Association is owned, tokenRecipient {
/**
* Change voting rules
*
* Make so that proposals need tobe discussed for at least `minutesForDebate/60` hours
* Make so that proposals need to be discussed for at least `minutesForDebate/60` hours
* and all voters combined must own more than `minimumSharesToPassAVote` shares of token `sharesAddress` to be executed
*
* @param sharesAddress token address
Expand Down
2 changes: 1 addition & 1 deletion solidity/dao-congress.sol
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ contract Congress is owned, tokenRecipient {
/**
* Change voting rules
*
* Make so that proposals need tobe discussed for at least `minutesForDebate/60` hours,
* Make so that proposals need to be discussed for at least `minutesForDebate/60` hours,
* have at least `minimumQuorumForProposals` votes, and have 50% + `marginOfVotesForMajority` votes to be executed
*
* @param minimumQuorumForProposals how many members must vote on a proposal for it to be executed
Expand Down
2 changes: 1 addition & 1 deletion views/content/dao-association.sol
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ contract Association is owned, tokenRecipient {
/**
* Change voting rules
*
* Make so that proposals need tobe discussed for at least `minutesForDebate/60` hours
* Make so that proposals need to be discussed for at least `minutesForDebate/60` hours
* and all voters combined must own more than `minimumSharesToPassAVote` shares of token `sharesAddress` to be executed
*
* @param sharesAddress token address
Expand Down
2 changes: 1 addition & 1 deletion views/content/dao-congress.sol
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ interface Token {
/**
* Change voting rules
*
* Make so that proposals need tobe discussed for at least `minutesForDebate/60` hours,
* Make so that proposals need to be discussed for at least `minutesForDebate/60` hours,
* have at least `minimumQuorumForProposals` votes, and have 50% + `marginOfVotesForMajority` votes to be executed
*
* @param minimumQuorumForProposals how many members must vote on a proposal for it to be executed
Expand Down

0 comments on commit 8789683

Please sign in to comment.