Skip to content

Commit 4bf66dd

Browse files
committed
fix typo
1 parent 662cb40 commit 4bf66dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/ethereum-contracts/contracts/agreements/gdav1/SuperfluidPool.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ contract SuperfluidPool is ISuperfluidPool, BeaconProxiable {
389389
uint128 oldUnits = _updateMemberUnits(memberAddr, newUnits);
390390

391391
// Unit updates by admin are effectively mint/burn operations when viewed through the ERC20 lens.
392-
// We thus emit a Transfer even from/to the zero address accordingly.
392+
// We thus emit a Transfer event from/to the zero address accordingly.
393393
if (oldUnits < newUnits) {
394394
emit Transfer(address(0), memberAddr, newUnits - oldUnits);
395395
} else if (oldUnits > newUnits) {

0 commit comments

Comments
 (0)