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

A tiny typo fix #762

Merged
merged 1 commit into from
Jan 4, 2018
Merged
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 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