Skip to content

Commit 47f155e

Browse files
committed
Merge branch 'typ' into update-forge-std
2 parents ce3c48a + 2ab51c9 commit 47f155e

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
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 the claming date is after the cliff/flow date and before the claim validity date
444+
// Ensure that the claiming 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ using SuperTokenV1Library for ISuperToken;
3232
* The contract uses ERC-20 allowance and Superfluid ACL flow operator permissions
3333
* to automate the vesting on behalf of the sender.
3434
* The contract is designed to be used with an off-chain automation to execute the vesting start and end.
35-
* The start and end executions are permisionless.
35+
* The start and end executions are permissionless.
3636
* Execution delays are handled with token transfer compensations, but watch out for complete expiries!
3737
* @custom:metadata The official addresses and subgraphs can be found from @superfluid-finance/metadata package.
3838
*/
@@ -760,7 +760,7 @@ contract VestingSchedulerV3 is IVestingSchedulerV3, IRelayRecipient {
760760
revert ScheduleNotClaimed();
761761
}
762762

763-
// Ensure that the claming date is after the cliff/flow date and before the claim validity date
763+
// Ensure that the claiming 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
}

packages/automation-contracts/scheduler/test/FlowScheduler.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ contract FlowSchedulerTest is FoundrySuperfluidTester {
5050
bytes userData
5151
);
5252

53-
/// @dev This is required by solidity for using the SupertTokenV1Library in the tester
53+
/// @dev This is required by solidity for using the SuperTokenV1Library in the tester
5454
using SuperTokenV1Library for SuperToken;
5555
constructor() FoundrySuperfluidTester(3) {}
5656
FlowScheduler internal flowScheduler;

packages/automation-contracts/scheduler/test/FlowSchedulerResolver.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ contract FlowSchedulerResolverTest is FoundrySuperfluidTester {
350350
expectUnexecutable();
351351
}
352352

353-
function testDeleteNonExistantStreamAfterEndDate() public {
353+
function testDeleteNonExistentStreamAfterEndDate() public {
354354
vm.startPrank(alice);
355355

356356
uint32 defaultEndDate = defaultStartDate + uint32(3600);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2418,7 +2418,7 @@ contract VestingSchedulerV2Tests is FoundrySuperfluidTester {
24182418

24192419
uint32 newEndDate = type(uint32).max - 1234;
24202420

2421-
// Setting up a batch call. Superfluid Protocol will replace the emtpy context with data about the sender. That's where the sender is retrieved from.
2421+
// Setting up a batch call. Superfluid Protocol will replace the empty context with data about the sender. That's where the sender is retrieved from.
24222422
ISuperfluid.Operation[] memory ops = new ISuperfluid.Operation[](1);
24232423
ops[0] = ISuperfluid.Operation({
24242424
operationType: BatchOperation.OPERATION_TYPE_SUPERFLUID_CALL_APP_ACTION,

packages/ethereum-contracts/test/contracts/agreements/InstantDistributionAgreementV1-Non-Callback.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ describe("IDAv1 | Non-Callback Tests", function () {
117117
);
118118
});
119119

120-
it("#1.1.3 publisher should fail to query non-existant index", async () => {
120+
it("#1.1.3 publisher should fail to query non-existent index", async () => {
121121
const idata = await t.contracts.ida.getIndex(
122122
superToken.address,
123123
alice,

0 commit comments

Comments
 (0)