Skip to content

Fix Typos in Documentation Comments Across Multiple Contracts #1993

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts/src/arbitration/interfaces/IEvidence.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pragma solidity 0.8.24;
/// @title IEvidence
interface IEvidence {
/// @dev To be raised when evidence is submitted. Should point to the resource (evidences are not to be stored on chain due to gas considerations).
/// @param _externalDisputeID Unique identifier for this dispute outside Kleros. It's the submitter responsability to submit the right external dispute ID.
/// @param _externalDisputeID Unique identifier for this dispute outside Kleros. It's the submitter responsibility to submit the right external dispute ID.
/// @param _party The address of the party submiting the evidence. Note that 0x0 refers to evidence not submitted by any party.
/// @param _evidence Stringified evidence object, example: '{"name" : "Justification", "description" : "Description", "fileURI" : "/ipfs/QmWQV5ZFFhEJiW8Lm7ay2zLxC2XS4wx1b2W7FfdrLMyQQc"}'.
event Evidence(uint256 indexed _externalDisputeID, address indexed _party, string _evidence);
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/kleros-v1/interfaces/IEvidenceV1.sol
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ interface IEvidenceV1 {
/// @dev To be raised when evidence is submitted. Should point to the resource (evidences are not to be stored on chain due to gas considerations).
/// @param _arbitrator The arbitrator of the contract.
/// @param _evidenceGroupID Unique identifier of the evidence group the evidence belongs to.
/// @param _party The address of the party submiting the evidence. Note that 0x0 refers to evidence not submitted by any party.
/// @param _party The address of the party submitting the evidence. Note that 0x0 refers to evidence not submitted by any party.
/// @param _evidence IPFS path to evidence, example: '/ipfs/Qmarwkf7C9RuzDEJNnarT3WZ7kem5bk8DZAzx78acJjMFH/evidence.json'
event Evidence(
IArbitratorV1 indexed _arbitrator,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ contract WrappedPinakion is Initializable {

/// @notice Moves `_amount` tokens from the caller's account to `_recipient`.
/// @param _recipient The entity receiving the funds.
/// @param _amount The amount to tranfer in base units.
/// @param _amount The amount to transfer in base units.
/// @return True on success.
function transfer(address _recipient, uint256 _amount) public returns (bool) {
if (isContract(controller)) {
Expand Down