Skip to content

Commit

Permalink
fix(typo): 'the each' -> 'each'
Browse files Browse the repository at this point in the history
  • Loading branch information
clesaege authored Feb 22, 2019
1 parent c5e8add commit 37e2299
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contracts/standard/permission/ArbitrableTokenList.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @authors: [@mtsalenc]
* @authors: [@mtsalenc, @clesaege]
* @reviewers: []
* @auditors: []
* @bounties: []
Expand Down Expand Up @@ -271,7 +271,7 @@ contract ArbitrableTokenList is PermissionInterface, Arbitrable {

emit RequestSubmitted(tokenID, token.status == TokenStatus.RegistrationRequested);

// Calculate total amount required to fully fund the each side.
// Calculate total amount required to fully fund each side.
// The amount required for each side is:
// total = arbitration cost + fee stake
// where:
Expand Down Expand Up @@ -326,7 +326,7 @@ contract ArbitrableTokenList is PermissionInterface, Arbitrable {
request.parties[uint(Party.Challenger)] = msg.sender;
request.challengerDepositTime = now; // Save the time the request left the challenge period and entered the arbitration fees funding period.

// Update the total amount required to fully fund the each side.
// Update the total amount required to fully fund each side.
// The amount required for each side is:
// total = arbitration cost + fee stake
// where:
Expand Down Expand Up @@ -526,7 +526,7 @@ contract ArbitrableTokenList is PermissionInterface, Arbitrable {
"Contributions must be made within the appeal period."
);

// Calculate the total amount required to fully fund the each side.
// Calculate the total amount required to fully fund each side.
// The amount required for each side is:
// total = appeal cost + fee stake
// where:
Expand Down

0 comments on commit 37e2299

Please sign in to comment.