Skip to content

Commit 651def6

Browse files
committed
docs: removed comments
1 parent 17c857f commit 651def6

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

contracts/src/arbitration/CentralizedArbitrator.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ contract CentralizedArbitrator is IArbitrator {
179179
emit DisputeCreation(disputeID, IArbitrable(msg.sender));
180180
}
181181

182-
/// @dev TRUSTED. Manages contributions, and appeals a dispute if at least two choices are fully funded. This function allows the appeals to be crowdfunded.
182+
/// @dev Manages contributions, and appeals a dispute if at least two choices are fully funded. This function allows the appeals to be crowdfunded.
183183
/// Note that the surplus deposit will be reimbursed.
184184
/// @param _disputeID Index of the dispute to appeal.
185185
/// @param _choice A choice that receives funding.

contracts/src/arbitration/KlerosCore.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -813,7 +813,7 @@ contract KlerosCore is IArbitrator {
813813
}
814814
}
815815

816-
/// @dev Executes a specified dispute's ruling. UNTRUSTED.
816+
/// @dev Executes a specified dispute's ruling.
817817
/// @param _disputeID The ID of the dispute.
818818
function executeRuling(uint256 _disputeID) external {
819819
Dispute storage dispute = disputes[_disputeID];

contracts/src/arbitration/KlerosGovernor.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ contract KlerosGovernor is IArbitrable, IMetaEvidence {
265265
reservedETH = reservedETH.subCap(submission.deposit);
266266
}
267267

268-
/// @dev Approves a transaction list or creates a dispute if more than one list was submitted. TRUSTED.
268+
/// @dev Approves a transaction list or creates a dispute if more than one list was submitted.
269269
/// If nothing was submitted changes session.
270270
function executeSubmissions() external duringApprovalPeriod {
271271
Session storage session = sessions[sessions.length - 1];
@@ -328,7 +328,7 @@ contract KlerosGovernor is IArbitrable, IMetaEvidence {
328328
emit Ruling(IArbitrator(msg.sender), _disputeID, _ruling);
329329
}
330330

331-
/// @dev Executes selected transactions of the list. UNTRUSTED.
331+
/// @dev Executes selected transactions of the list.
332332
/// @param _listID The index of the transaction list in the array of lists.
333333
/// @param _cursor Index of the transaction from which to start executing.
334334
/// @param _count Number of transactions to execute. Executes until the end if set to "0" or number higher than number of transactions in the list.

contracts/src/arbitration/arbitrables/ArbitrableExample.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ contract ArbitrableExample is IArbitrable, IMetaEvidence {
3232
emit MetaEvidence(_metaEvidenceID, _metaEvidence);
3333
}
3434

35-
/// @dev TRUSTED. Calls createDispute function of the specified arbitrator to create a dispute.
35+
/// @dev Calls createDispute function of the specified arbitrator to create a dispute.
3636
/// Note that we don’t need to check that msg.value is enough to pay arbitration fees as it’s the responsibility of the arbitrator contract.
3737
/// @param _numberOfRulingOptions Number of ruling options. Must be greater than 1, otherwise there is nothing to choose from.
3838
/// @param _arbitratorExtraData Extra data for the arbitrator.

contracts/src/arbitration/arbitrables/ArbitrableExampleEthFee.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ contract ArbitrableExampleEthFee is IArbitrable, IMetaEvidence {
2929
emit MetaEvidence(META_EVIDENCE_ID, _metaEvidence);
3030
}
3131

32-
/// @dev TRUSTED. Calls createDispute function of the specified arbitrator to create a dispute.
32+
/// @dev Calls createDispute function of the specified arbitrator to create a dispute.
3333
/// Note that we don’t need to check that msg.value is enough to pay arbitration fees as it’s the responsibility of the arbitrator contract.
3434
/// @param _numberOfRulingOptions Number of ruling options. Must be greater than 1, otherwise there is nothing to choose from.
3535
/// @param _arbitratorExtraData Extra data for the arbitrator.

contracts/src/arbitration/arbitrables/DisputeResolver.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ contract DisputeResolver is IArbitrableV2 {
3030
arbitrator = _arbitrator;
3131
}
3232

33-
/// @dev TRUSTED. Calls createDispute function of the specified arbitrator to create a dispute.
33+
/// @dev Calls createDispute function of the specified arbitrator to create a dispute.
3434
/// Note that we don’t need to check that msg.value is enough to pay arbitration fees as it’s the responsibility of the arbitrator contract.
3535
/// @param _arbitratorExtraData Extra data for the arbitrator of the dispute.
3636
/// @param _template Dispute template.

contracts/src/kleros-v1/kleros-liquid/KlerosLiquidToV2Governor.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ contract KlerosLiquidToV2Governor is IArbitrable, ITokenController {
8989
dispute.klerosLiquidDisputeID = _disputeID;
9090
}
9191

92-
/// @dev Give a ruling for a dispute. Can only be called by the arbitrator. TRUSTED.
92+
/// @dev Give a ruling for a dispute. Can only be called by the arbitrator.
9393
/// Triggers rule() from KlerosLiquid to the arbitrable contract which created the dispute.
9494
/// @param _disputeID ID of the dispute in the arbitrator contract.
9595
/// @param _ruling Ruling given by the arbitrator. Note that 0 is reserved for "Refused to arbitrate".

0 commit comments

Comments
 (0)