diff --git a/docs/examples/voting.rst b/docs/examples/voting.rst index a51c01b74..6e36f4e51 100644 --- a/docs/examples/voting.rst +++ b/docs/examples/voting.rst @@ -133,7 +133,7 @@ of votes. // modifies `voters[msg.sender].voted` Voter storage delegate_ = voters[to]; - // Voters cannot delegate to wallets that cannot vote. + // Voters cannot delegate to accounts that cannot vote. require(delegate_.weight >= 1); sender.voted = true; sender.delegate = to;