Skip to content

Commit af4a193

Browse files
Merge pull request #281 from omahs/patch-1
Fix typos
2 parents 2874101 + 5ed9254 commit af4a193

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/HookTarget/HookTargetStakeDelegator.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ contract HookTargetStakeDelegatorTest is EVaultTestBase {
297297
assertEq(IRewardVault(rewardVault).getDelegateStake(user2, address(hookTargetStakeDelegator)), 1000);
298298
}
299299

300-
function test_HookTargetStakeDelegator_wihdraw_from_subaccount() public {
300+
function test_HookTargetStakeDelegator_withdraw_from_subaccount() public {
301301
address user2 = makeAddr("user2");
302302
address user2_subaccount1 = address(uint160(user2) ^ 0x1);
303303

test/SnapshotRegistry/SnapshotRegistry.unit.t.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ contract SnapshotRegistryTest is Test {
3434
}
3535

3636
/// @dev EVC address is stored and the owner is set to `msg.sender` in constructor.
37-
function testInitalize() public view {
37+
function testInitialize() public view {
3838
assertEq(registry.EVC(), address(evc));
3939
assertEq(registry.owner(), OWNER);
4040
}
@@ -83,7 +83,7 @@ contract SnapshotRegistryTest is Test {
8383
assertSingleElement(element, base, quote, timestamp1, true);
8484
}
8585

86-
/// @dev Many element can be added for the same base and quote. They can be queried by base and quote.
86+
/// @dev Many elements can be added for the same base and quote. They can be queried by base and quote.
8787
/// forge-config: default.fuzz.runs = 100
8888
function testAddMany(uint256 length, address base, address quote, uint256 timestamp0, uint256 timestamp1) public {
8989
length = bound(length, 2, 100);

0 commit comments

Comments
 (0)