diff --git a/contracts/libraries/CircleCCTPAdapter.sol b/contracts/libraries/CircleCCTPAdapter.sol index 06c7f1033..9f3e09e4f 100644 --- a/contracts/libraries/CircleCCTPAdapter.sol +++ b/contracts/libraries/CircleCCTPAdapter.sol @@ -67,7 +67,7 @@ abstract contract CircleCCTPAdapter { /// @custom:oz-upgrades-unsafe-allow constructor constructor( IERC20 _usdcToken, - /// @dev This should ideally be an address but its kept as an ITokenMessenger to avoid rippling changes to the + /// @dev This should ideally be an address but it's kept as an ITokenMessenger to avoid rippling changes to the /// constructors for every SpokePool/Adapter. ITokenMessenger _cctpTokenMessenger, uint32 _recipientCircleDomainId @@ -113,7 +113,7 @@ abstract contract CircleCCTPAdapter { function _transferUsdc(bytes32 to, uint256 amount) internal { // Only approve the exact amount to be transferred usdcToken.safeIncreaseAllowance(address(cctpTokenMessenger), amount); - // Submit the amount to be transferred to bridged via the TokenMessenger. + // Submit the amount to be transferred to bridge via the TokenMessenger. // If the amount to send exceeds the burn limit per message, then split the message into smaller parts. ITokenMinter cctpMinter = cctpTokenMessenger.localMinter(); uint256 burnLimit = cctpMinter.burnLimitsPerMessage(address(usdcToken)); @@ -121,7 +121,7 @@ abstract contract CircleCCTPAdapter { while (remainingAmount > 0) { uint256 partAmount = remainingAmount > burnLimit ? burnLimit : remainingAmount; if (cctpV2) { - // Uses the CCTP V2 "standard transfer" speed and + // Uses the CCTP V2 "standard transfer" speed and // therefore pays no additional fee for the transfer to be sped up. ITokenMessengerV2(address(cctpTokenMessenger)).depositForBurn( partAmount,