From 4445b48eed2c97708fa03ed6c152209819576294 Mon Sep 17 00:00:00 2001 From: Derek <103802618+leeederek@users.noreply.github.com> Date: Thu, 22 Aug 2024 08:01:28 -0400 Subject: [PATCH] minor typo fixes in comments --- src/express-lane-auction/IExpressLaneAuction.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/express-lane-auction/IExpressLaneAuction.sol b/src/express-lane-auction/IExpressLaneAuction.sol index 2d7f25b8..4aa06d26 100644 --- a/src/express-lane-auction/IExpressLaneAuction.sol +++ b/src/express-lane-auction/IExpressLaneAuction.sol @@ -41,9 +41,9 @@ struct Transferor { struct InitArgs { /// @notice The address who can resolve auctions address _auctioneer; - /// @notice The erc20 token that bids will be made in - /// It is assumed that the this token does NOT have fee-on-transfer, rebasing, - /// transfer hooks or otherwise non-standard ERC20 logic. + /// @notice The ERC20 token that bids will be made in + /// It is assumed that this token does NOT have fee-on-transfer, rebasing, + /// transfer hooks or otherwise non-standard ERC20 logic. address _biddingToken; /// @notice The address to which auction winners will pay the bid address _beneficiary;