chore: Remove repetitive word in multiple files (#6978)

Signed-off-by: chuanshanjida <chuanshanjida@outlook.com>
This commit is contained in:
chuanshanjida
2026-04-20 12:56:03 -04:00
committed by Bart
parent 297f7119b5
commit d6e7dbabfa
3 changed files with 3 additions and 3 deletions

View File

@@ -594,7 +594,7 @@ OfferCreate::applyGuts(Sandbox& sb, Sandbox& sbCancel)
auto const cancelSequence = ctx_.tx[~sfOfferSequence];
// Note that we we use the value from the sequence or ticket as the
// Note that we use the value from the sequence or ticket as the
// offer sequence. For more explanation see comments in SeqProxy.h.
auto const offerSequence = ctx_.tx.getSeqValue();

View File

@@ -439,7 +439,7 @@ EscrowCreate::doApply()
return tecDST_TAG_NEEDED;
}
// Create escrow in ledger. Note that we we use the value from the
// Create escrow in ledger. Note that we use the value from the
// sequence or ticket. For more explanation see comments in SeqProxy.h.
Keylet const escrowKeylet = keylet::escrow(account_, ctx_.tx.getSeqValue());
auto const slep = std::make_shared<SLE>(escrowKeylet);

View File

@@ -134,7 +134,7 @@ PaymentChannelCreate::doApply()
// Create PayChan in ledger.
//
// Note that we we use the value from the sequence or ticket as the
// Note that we use the value from the sequence or ticket as the
// payChan sequence. For more explanation see comments in SeqProxy.h.
Keylet const payChanKeylet = keylet::payChan(account, dst, ctx_.tx.getSeqValue());
auto const slep = std::make_shared<SLE>(payChanKeylet);