Skip to content
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

Fix some comments #1322

Merged
merged 1 commit into from
May 28, 2024
Merged
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/helpers/order-validator/SeaportValidator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -1103,7 +1103,7 @@ contract SeaportValidator is
}

/**
* @notice Creates a merkle proof for the the targetIndex contained in includedTokens.
* @notice Creates a merkle proof for the targetIndex contained in includedTokens.
* @dev `targetIndex` is referring to the index of an element in `includedTokens`.
* `includedTokens` must be sorting in ascending order according to the keccak256 hash of the value.
* @return merkleProof The merkle proof
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@ contract SeaportValidatorHelper is Murky {
}

/**
* @notice Creates a merkle proof for the the targetIndex contained in includedTokens.
* @notice Creates a merkle proof for the targetIndex contained in includedTokens.
* @dev `targetIndex` is referring to the index of an element in `includedTokens`.
* `includedTokens` must be sorting in ascending order according to the keccak256 hash of the value.
* @return merkleProof The merkle proof
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ interface SeaportValidatorInterface {
);

/**
* @notice Creates a merkle proof for the the targetIndex contained in includedTokens.
* @notice Creates a merkle proof for the targetIndex contained in includedTokens.
* @dev `targetIndex` is referring to the index of an element in `includedTokens`.
* `includedTokens` must be sorting in ascending order according to the keccak256 hash of the value.
* @return merkleProof The merkle proof
Expand Down
2 changes: 1 addition & 1 deletion reference/lib/ReferenceAssertions.sol
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ contract ReferenceAssertions is
) ReferenceGettersAndDerivers(conduitController) {}

/**
* @dev Internal view function to to ensure that the supplied consideration
* @dev Internal view function to ensure that the supplied consideration
* array length on a given set of order parameters is not less than the
* original consideration array length for that order and to retrieve
* the current counter for a given order's offerer and zone and use it
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/new/helpers/FuzzMutations.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3060,7 +3060,7 @@ contract FuzzMutations is Test, FuzzExecutor {

// This mutation triggers a revert by modifying the first proof element
// in a criteria resolver's proof array. Seaport will reject a criteria
// resolver if the the identifiers, criteria, and proof do not
// resolver if the identifiers, criteria, and proof do not
// harmonize.

bytes32 firstProofElement = resolver.criteriaProof[0];
Expand Down
Loading