Skip to content

Commit 5a0fb64

Browse files
authored
chore: remove redundant words in comment (#2092)
Signed-off-by: pavedroad <qcqs@outlook.com>
1 parent e27cb41 commit 5a0fb64

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/automation-contracts/scheduler/contracts/VestingSchedulerV2.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ contract VestingSchedulerV2 is IVestingSchedulerV2, SuperAppBase {
441441
if (!disableClaimCheck && schedule.claimValidityDate != 0)
442442
revert ScheduleNotClaimed();
443443

444-
// Ensure that that the claming date is after the cliff/flow date and before the claim validity date
444+
// Ensure that the claming date is after the cliff/flow date and before the claim validity date
445445
if (schedule.cliffAndFlowDate > block.timestamp ||
446446
_lteDateToExecuteCliffAndFlow(schedule) < block.timestamp)
447447
revert TimeWindowInvalid();

packages/automation-contracts/scheduler/contracts/VestingSchedulerV3.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ contract VestingSchedulerV3 is IVestingSchedulerV3, IRelayRecipient {
760760
revert ScheduleNotClaimed();
761761
}
762762

763-
// Ensure that that the claming date is after the cliff/flow date and before the claim validity date
763+
// Ensure that the claming date is after the cliff/flow date and before the claim validity date
764764
if (schedule.cliffAndFlowDate > block.timestamp || _lteDateToExecuteCliffAndFlow(schedule) < block.timestamp) {
765765
revert TimeWindowInvalid();
766766
}

0 commit comments

Comments
 (0)