diff --git a/contracts/SimpleTokenSwap.sol b/contracts/SimpleTokenSwap.sol index 458b978..a045efd 100644 --- a/contracts/SimpleTokenSwap.sol +++ b/contracts/SimpleTokenSwap.sol @@ -41,7 +41,7 @@ contract SimpleTokenSwap { // Payable fallback to allow this contract to receive protocol fee refunds. receive() external payable {} - // Transfer tokens held by this contrat to the sender/owner. + // Transfer tokens held by this contract to the sender/owner. function withdrawToken(IERC20 token, uint256 amount) external onlyOwner @@ -49,7 +49,7 @@ contract SimpleTokenSwap { require(token.transfer(msg.sender, amount)); } - // Transfer ETH held by this contrat to the sender/owner. + // Transfer ETH held by this contract to the sender/owner. function withdrawETH(uint256 amount) external onlyOwner