Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
omahs authored Nov 8, 2024
1 parent 34b15be commit 5522345
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/contracts/test/L2NativeSuperchainERC20.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ contract L2NativeSuperchainERC20Test is Test {
assertEq(superchainERC20.balanceOf(alice), _amount);
}

/// @notice tests that an insufficent balance cannot be transferred.
/// @notice tests that an insufficient balance cannot be transferred.
function testFuzz_transferInsufficientBalance_reverts(address _to, uint256 _mintAmount, uint256 _sendAmount)
public
{
Expand All @@ -148,7 +148,7 @@ contract L2NativeSuperchainERC20Test is Test {
superchainERC20.transfer(_to, _sendAmount);
}

/// @notice tests that an insufficent allowance cannot be transferred.
/// @notice tests that an insufficient allowance cannot be transferred.
function testFuzz_transferFromInsufficientAllowance_reverts(
address _to,
address _from,
Expand Down

0 comments on commit 5522345

Please sign in to comment.