Skip to content

Commit 4b3966d

Browse files
committed
typos
1 parent 6d19440 commit 4b3966d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Passage.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ contract HostPassage {
5858
/// @dev Permanently burns the entire msg.value by locking it in this contract.
5959
/// @param rollupChainId - The rollup chain to enter.
6060
/// @param rollupRecipient - The recipient of the Ether on the rollup.
61-
/// @custom:emits Enter indicatig the amount of Ether to mint on the rollup & its recipient.
61+
/// @custom:emits Enter indicating the amount of Ether to mint on the rollup & its recipient.
6262
function enter(uint256 rollupChainId, address rollupRecipient) public payable {
6363
emit Enter(rollupChainId, address(0), rollupRecipient, msg.value);
6464
}
@@ -69,7 +69,7 @@ contract HostPassage {
6969
/// @param rollupRecipient - The recipient of the Ether on the rollup.
7070
/// @param token - The address of the ERC20 token on the Host.
7171
/// @param amount - The amount of the ERC20 token to transfer to the rollup.
72-
/// @custom:emits Enter indicatig the amount of tokens to mint on the rollup & its recipient.
72+
/// @custom:emits Enter indicating the amount of tokens to mint on the rollup & its recipient.
7373
function enter(uint256 rollupChainId, address rollupRecipient, address token, uint256 amount) public payable {
7474
IERC20(token).transferFrom(msg.sender, address(this), amount);
7575
emit Enter(rollupChainId, token, rollupRecipient, amount);

0 commit comments

Comments
 (0)