Skip to content

Commit 6067f8c

Browse files
misc: Comment punctuation & author correction
1 parent e1de572 commit 6067f8c

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

src/ATokenVaultRevenueSplitterOwner.sol

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,24 @@ import {SafeERC20} from "@openzeppelin/token/ERC20/utils/SafeERC20.sol";
1010

1111
/**
1212
* @title ATokenVaultRevenueSplitterOwner
13-
* @author Aave Protocol
13+
* @author Aave Labs
1414
* @notice ATokenVault owner with revenue split capabilities.
1515
*/
1616
contract ATokenVaultRevenueSplitterOwner is Ownable {
1717
using SafeERC20 for IERC20;
1818

1919
/**
20-
* @dev Emitted at construction time for each recipient set
21-
* @param recipient The address of the recipient set
22-
* @param shareInBps The recipient's share of the revenue in basis points
20+
* @dev Emitted at construction time for each recipient set.
21+
* @param recipient The address of the recipient set.
22+
* @param shareInBps The recipient's share of the revenue in basis points.
2323
*/
2424
event RecipientSet(address indexed recipient, uint16 shareInBps);
2525

2626
/**
27-
* @dev Emitted when revenue is split for each recipient and asset
28-
* @param recipient The address of the recipient receiving the revenue
29-
* @param asset The asset being split
30-
* @param amount The amount of revenue sent to the recipient in the split asset
27+
* @dev Emitted when revenue is split for each recipient and asset.
28+
* @param recipient The address of the recipient receiving the revenue.
29+
* @param asset The asset being split.
30+
* @param amount The amount of revenue sent to the recipient in the split asset.
3131
*/
3232
event RevenueSplitTransferred(address indexed recipient, address indexed asset, uint256 amount);
3333

@@ -43,8 +43,8 @@ contract ATokenVaultRevenueSplitterOwner is Ownable {
4343

4444
/**
4545
* @dev A struct to represent a recipient and its share of the revenue in basis points.
46-
* @param addr The address of the recipient
47-
* @param shareInBps The recipient's share of the revenue in basis points
46+
* @param addr The address of the recipient.
47+
* @param shareInBps The recipient's share of the revenue in basis points.
4848
*/
4949
struct Recipient {
5050
address addr;
@@ -66,6 +66,7 @@ contract ATokenVaultRevenueSplitterOwner is Ownable {
6666
*/
6767
mapping(address => mapping(address => uint256)) internal _amountAlreadyTransferred;
6868

69+
6970
/**
7071
* @dev Constructor.
7172
* @param vault The address of the aToken Vault to own, whose revenue is split.

0 commit comments

Comments
 (0)