From b67443dd82021e0c9164de99f8ca3809ee188e30 Mon Sep 17 00:00:00 2001 From: Nicolas Frisby Date: Mon, 26 Aug 2024 13:43:54 -0700 Subject: [PATCH] TOSQUASH fixup some Haddock --- .../Ouroboros/Consensus/Mempool/TxSeq.hs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ouroboros-consensus/src/ouroboros-consensus/Ouroboros/Consensus/Mempool/TxSeq.hs b/ouroboros-consensus/src/ouroboros-consensus/Ouroboros/Consensus/Mempool/TxSeq.hs index 687bf9fa62..96f0d3dd04 100644 --- a/ouroboros-consensus/src/ouroboros-consensus/Ouroboros/Consensus/Mempool/TxSeq.hs +++ b/ouroboros-consensus/src/ouroboros-consensus/Ouroboros/Consensus/Mempool/TxSeq.hs @@ -202,10 +202,10 @@ splitAfterTicketNo (TxSeq txs) n = case FingerTree.split (\m -> mMaxTicket m > n) txs of (l, r) -> (TxSeq l, TxSeq r) --- | \( O(\log(n)) \). Split the sequence of transactions into two parts --- based on the given @sz@. The first part has transactions whose --- summed '' is less than or equal to the given 'TxSizeInBytes', --- and the second part has the remaining transactions in the sequence. +-- | \( O(\log(n)) \). Split the sequence of transactions into two parts based +-- on the given @sz@. The first part has transactions whose summed @sz@ is less +-- than or equal to the given @sz@, and the second part has the remaining +-- transactions in the sequence. -- splitAfterTxSize :: Measure sz