Skip to content

Commit 10454fc

Browse files
docs(Escrow): typo
1 parent c382dc8 commit 10454fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/src/EscrowUniversal.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ contract EscrowUniversal is IEscrow, IArbitrableV2 {
3737
uint256 public feeTimeout; // Time in seconds a party can take to pay arbitration fees before being considered unresponsive and lose the dispute.
3838
uint256 public settlementTimeout; // Time in seconds a party can take to accept or propose a settlement before being considered unresponsive.
3939
Transaction[] public transactions; // List of all created transactions.
40-
mapping(uint256 => uint256) public disputeIDtoTransactionID; // Naps dispute ID to tx ID.
40+
mapping(uint256 => uint256) public disputeIDtoTransactionID; // Maps dispute ID to tx ID.
4141
mapping(IERC20 => uint256) public amountCaps; // Caps the amount of the respective token for the Escrow transaction.
4242

4343
// ************************************* //

0 commit comments

Comments
 (0)