Skip to content

Commit c5ac7cf

Browse files
authoredMar 16, 2024
comment misspell (#1846)
1 parent 2835595 commit c5ac7cf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎solidity_examples/rubixi.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ contract Rubixi {
140140
balance += (msg.value * (100 - _fee)) / 100;
141141
collectedFees += (msg.value * _fee) / 100;
142142

143-
//Pays earlier participiants if balance sufficient
143+
//Pays earlier participants if balance sufficient
144144
while (balance > participants[payoutOrder].payout) {
145145
uint payoutToSend = participants[payoutOrder].payout;
146146
participants[payoutOrder].etherAddress.transfer(payoutToSend);

‎tests/testdata/input_contracts/rubixi.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ contract Rubixi {
140140
balance += (msg.value * (100 - _fee)) / 100;
141141
collectedFees += (msg.value * _fee) / 100;
142142

143-
//Pays earlier participiants if balance sufficient
143+
//Pays earlier participants if balance sufficient
144144
while (balance > participants[payoutOrder].payout) {
145145
uint payoutToSend = participants[payoutOrder].payout;
146146
participants[payoutOrder].etherAddress.transfer(payoutToSend);

0 commit comments

Comments
 (0)