Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix spelling issues #306

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Join our Discord chat channel! https://discordapp.com/invite/rocketpool

# A Step-by-Step Beginners Guide

The following worked example uses macOS Sierra 10.12.6 and VMware Fusion 8.5.8 - all versions correct as of 15/09/2017.
The following worked example uses macOS Sierra 10.12.6 and VMware Fusion 8.5.8 - all versions are correct as of 15/09/2017.

Download and install Ubuntu onto a new VM -> https://www.ubuntu.com/download/desktop - tested with v16.04

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ contract RocketDAOProtocolProposal is RocketBase, RocketDAOProtocolProposalInter
return getUint(keccak256(abi.encodePacked(daoProposalNameSpace, "votes.veto", _proposalID)));
}

/// @notice Get the against voteing power count of this proposal
/// @notice Get the against voting power count of this proposal
/// @param _proposalID The ID of the proposal to query
function getVotingPowerAbstained(uint256 _proposalID) override public view returns (uint256) {
return getUint(keccak256(abi.encodePacked(daoProposalNameSpace, "votes.abstained", _proposalID)));
Expand Down