From eb6d2157870033ac08488664c9b6c50db0bcf771 Mon Sep 17 00:00:00 2001 From: James Geary <36774175+jgeary@users.noreply.github.com> Date: Fri, 7 Oct 2022 16:24:45 -0400 Subject: [PATCH] tweak docs --- .../ETH/ReserveAuctionListingAdjustableBufferIncrementEth.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/modules/ReserveAuction/Listing/ETH/ReserveAuctionListingAdjustableBufferIncrementEth.sol b/contracts/modules/ReserveAuction/Listing/ETH/ReserveAuctionListingAdjustableBufferIncrementEth.sol index 8da44475..6029df87 100644 --- a/contracts/modules/ReserveAuction/Listing/ETH/ReserveAuctionListingAdjustableBufferIncrementEth.sol +++ b/contracts/modules/ReserveAuction/Listing/ETH/ReserveAuctionListingAdjustableBufferIncrementEth.sol @@ -340,7 +340,7 @@ contract ReserveAuctionListingAdjustableBufferIncrementEth is // | | | // | | | // | _______________________________________________ | - // | ! ALT / Bid placed within 15 min of end? ! | + // | ! ALT / Bid placed within time buffer? ! | // | !_____/ | ! | // | ! |----. ! | // | ! | | extend auction ! | @@ -452,7 +452,7 @@ contract ReserveAuctionListingAdjustableBufferIncrementEth is timeRemaining = firstBidTime + duration - block.timestamp; } - // If the bid is placed within 15 minutes of the auction end, extend the auction + // If the bid is placed within time buffer, extend the auction uint16 timeBuffer; if (auction.timeBuffer > 0) { timeBuffer = auction.timeBuffer;