Skip to content

Commit 01a794d

Browse files
authored
Merge pull request #13117 from ethereum/fixEmptyLinesInDocs
Remove all-whitespace lines from docs.
2 parents cf1b9a5 + 4576333 commit 01a794d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/examples/voting.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,17 +128,17 @@ of votes.
128128
// We found a loop in the delegation, not allowed.
129129
require(to != msg.sender, "Found loop in delegation.");
130130
}
131-
131+
132132
Voter storage delegate_ = voters[to];
133133
134134
// Voters cannot delegate to accounts that cannot vote.
135135
require(delegate_.weight >= 1);
136-
136+
137137
// Since `sender` is a reference, this
138138
// modifies `voters[msg.sender]`.
139139
sender.voted = true;
140140
sender.delegate = to;
141-
141+
142142
if (delegate_.voted) {
143143
// If the delegate already voted,
144144
// directly add to the number of votes

0 commit comments

Comments
 (0)