Skip to content

Commit

Permalink
fix: natspec typos
Browse files Browse the repository at this point in the history
  • Loading branch information
wei3erHase committed Mar 28, 2024
1 parent a2e328f commit 5e56e80
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions solidity/interfaces/IVestingEscrowSimple.sol
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@ interface IVestingEscrowSimple {

/**
* @notice Returns the total amount of tokens claimed by the recipient.
* @return totalClaimed The total amount of claimed tokens.
* @return _totalClaimed The total amount of claimed tokens.
*/
function total_claimed() external view returns (uint256 totalClaimed);
function total_claimed() external view returns (uint256 _totalClaimed);

/**
* @notice Returns the timestamp at which the token flow was disabled, if ever.
Expand All @@ -164,7 +164,7 @@ interface IVestingEscrowSimple {

/**
* @notice Returns the address of the owner.
* @return owner The address of the owner.
* @return _owner The address of the owner.
*/
function owner() external view returns (address owner);
function owner() external view returns (address _owner);
}

0 comments on commit 5e56e80

Please sign in to comment.