diff --git a/src/adapters/BlackholeAdapter.sol b/src/adapters/BlackholeAdapter.sol index 9ee056ce..bbe91b03 100644 --- a/src/adapters/BlackholeAdapter.sol +++ b/src/adapters/BlackholeAdapter.sol @@ -84,7 +84,7 @@ contract BlackholeAdapter is YakAdapter { override { (uint256 amountOut, address pair) = getQuoteAndPair(_amountIn, _tokenIn, _tokenOut); - require(amountOut >= _amountOut, "Insufficent amount out"); + require(amountOut >= _amountOut, "Insufficient amount out"); (uint256 amount0Out, uint256 amount1Out) = (_tokenIn < _tokenOut) ? (uint256(0), amountOut) : (amountOut, uint256(0)); IERC20(_tokenIn).safeTransfer(pair, _amountIn); diff --git a/src/adapters/CamelotAdapter.sol b/src/adapters/CamelotAdapter.sol index 13fbad75..a5de04d6 100644 --- a/src/adapters/CamelotAdapter.sol +++ b/src/adapters/CamelotAdapter.sol @@ -82,7 +82,7 @@ contract CamelotAdapter is YakAdapter { address to ) internal override { (uint256 amountOut, address pair) = getQuoteAndPair(_amountIn, _tokenIn, _tokenOut); - require(amountOut >= _amountOut, "Insufficent amount out"); + require(amountOut >= _amountOut, "Insufficient amount out"); (uint256 amount0Out, uint256 amount1Out) = (_tokenIn < _tokenOut) ? (uint256(0), amountOut) : (amountOut, uint256(0)); diff --git a/src/adapters/VelodromeAdapter.sol b/src/adapters/VelodromeAdapter.sol index 54035743..7fd846ed 100644 --- a/src/adapters/VelodromeAdapter.sol +++ b/src/adapters/VelodromeAdapter.sol @@ -127,7 +127,7 @@ contract VelodromeAdapter is YakAdapter { address to ) internal override { (uint256 amountOut, address pair) = getQuoteAndPair(_amountIn, _tokenIn, _tokenOut); - require(amountOut >= _amountOut, "Insufficent amount out"); + require(amountOut >= _amountOut, "Insufficient amount out"); (uint256 amount0Out, uint256 amount1Out) = (_tokenIn < _tokenOut) ? (uint256(0), amountOut) : (amountOut, uint256(0)); diff --git a/src/test/BridgeToken.sol b/src/test/BridgeToken.sol index 323cc5dd..e019118a 100644 --- a/src/test/BridgeToken.sol +++ b/src/test/BridgeToken.sol @@ -73,7 +73,7 @@ contract BridgeToken is ERC20Burnable { /** * @dev Mint function used by bridge. Optional FeeAddress and FeeAmount parameters used to mint small percentage of - transfered assets directly to bridge. + transferred assets directly to bridge. * @param to Address to mint funds to. * @param amount Amount of funds to mint. * @param feeAddress Address to mint bridge fees to.