Skip to content

Commit

Permalink
Improve docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ernestognw committed Feb 13, 2024
1 parent 11fb45b commit 47ddb0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/finance/VestingWalletCliff.sol
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ abstract contract VestingWalletCliff is VestingWallet {
* an asset given its total historical allocation. Returns 0 if the {cliff} timestamp is not met.
*
* IMPORTANT: The cliff not only makes the schedule return 0, but it also ignores every possible side
* effect. Carefully consider this caveat if the overridden implementation of this function has any side
* effect (e.g. writing to memory or reverting).
* effect from calling the inherited implementation (i.e. `super._vestingSchedule`). Carefully consider
* this caveat if the overridden implementation of this function has any (e.g. writing to memory or reverting).
*/
function _vestingSchedule(
uint256 totalAllocation,
Expand Down

0 comments on commit 47ddb0d

Please sign in to comment.