Skip to content

Commit fc6c159

Browse files
committed
docs: clarify docs and fix typos
1 parent b66e870 commit fc6c159

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contracts/standard/arbitration/Linguo.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ contract Linguo is Arbitrable {
8181
event TaskCreated(uint indexed _taskID, address indexed _requester, uint _timestamp);
8282

8383
/** @dev To be emitted when a translator assigns the task to himself.
84-
* @param _taskID The ID of task assigned.
84+
* @param _taskID The ID of the assigned task.
8585
* @param _translator The address that was assigned to the task.
8686
* @param _price The task price at the moment it was assigned.
8787
* @param _timestamp When the task was assigned.
@@ -110,7 +110,7 @@ contract Linguo is Arbitrable {
110110
*/
111111
event TaskResolved(uint indexed _taskID, string _reason, uint _timestamp);
112112

113-
/** @dev To be emitted when the appeal fees of one of the parties is fully funded.
113+
/** @dev To be emitted when the appeal fees of one of the parties are fully funded.
114114
* @param _taskID The ID of the respective task.
115115
* @param _party The party that is fully funded.
116116
*/
@@ -180,7 +180,7 @@ contract Linguo is Arbitrable {
180180
challengeMultiplier = _challengeMultiplier;
181181
}
182182

183-
/** @dev Changes the percentage of arbitration fees that must be paid by parties as a fee stake if there was no winner and loser in the previouss round.
183+
/** @dev Changes the percentage of arbitration fees that must be paid by parties as a fee stake if there was no winner and loser in the previous round.
184184
* @param _sharedStakeMultiplier A new value of the multiplier of the appeal cost in case when there is no winner/loser in previous round. In basis point.
185185
*/
186186
function changeSharedStakeMultiplier(uint _sharedStakeMultiplier) public onlyGovernor {

0 commit comments

Comments
 (0)