Skip to content

Commit c7d5703

Browse files
committed
Improve wording on voting example
From a beginner perspective, it is the first time in the documentation that the term wallets is used. Other terms such as accounts or addresses are explained in the Introduction to smart contracts.
1 parent 1dba6aa commit c7d5703

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/examples/voting.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ of votes.
133133
// modifies `voters[msg.sender].voted`
134134
Voter storage delegate_ = voters[to];
135135
136-
// Voters cannot delegate to wallets that cannot vote.
136+
// Voters cannot delegate to accounts that cannot vote.
137137
require(delegate_.weight >= 1);
138138
sender.voted = true;
139139
sender.delegate = to;

0 commit comments

Comments
 (0)