Skip to content

fix: typos in documentation files #637

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bridge/standard/pkg/gwcontract/gateway.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func (g *Gateway[EventType]) FinalizeTransfer(
g.logger.Error(
"failed to send transaction",
"sender", opts.From,
"receipient", recipient,
"recipient", recipient,
"amount", amount,
"error", err,
)
Expand Down
2 changes: 1 addition & 1 deletion contracts/contracts/standard-bridge/Gateway.sol
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ abstract contract Gateway is IGateway, GatewayStorage,
/// @notice The _recipient is transferred eth on the destination chain via solidity's send function (with built-in gas limit).
/// Therefore the _recipient MUST be an EOA on the other chain to gauruntee a successful transfer.
/// @notice If _recipient is a contract, manual withdrawal may be required on the counterparty chain.
/// @notice The caller of this function takes responsiblity for whatever address is specified as the _recipient.
/// @notice The caller of this function takes responsibility for whatever address is specified as the _recipient.
/// That is, if _recipient is a contract with an immutable receiver that reverts, the user would be at fault for loss of funds.
/// @param _recipient The address to receive the tokens.
/// @param _amount The amount of Ether to transfer in wei.
Expand Down