Skip to content

Commit 585b2ef

Browse files
authored
Merge pull request #1322 from pullmerge/main
Fix some comments
2 parents 2ff6ea3 + 5db5b8c commit 585b2ef

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

contracts/helpers/order-validator/SeaportValidator.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1103,7 +1103,7 @@ contract SeaportValidator is
11031103
}
11041104

11051105
/**
1106-
* @notice Creates a merkle proof for the the targetIndex contained in includedTokens.
1106+
* @notice Creates a merkle proof for the targetIndex contained in includedTokens.
11071107
* @dev `targetIndex` is referring to the index of an element in `includedTokens`.
11081108
* `includedTokens` must be sorting in ascending order according to the keccak256 hash of the value.
11091109
* @return merkleProof The merkle proof

contracts/helpers/order-validator/lib/SeaportValidatorHelper.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -902,7 +902,7 @@ contract SeaportValidatorHelper is Murky {
902902
}
903903

904904
/**
905-
* @notice Creates a merkle proof for the the targetIndex contained in includedTokens.
905+
* @notice Creates a merkle proof for the targetIndex contained in includedTokens.
906906
* @dev `targetIndex` is referring to the index of an element in `includedTokens`.
907907
* `includedTokens` must be sorting in ascending order according to the keccak256 hash of the value.
908908
* @return merkleProof The merkle proof

contracts/helpers/order-validator/lib/SeaportValidatorInterface.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ interface SeaportValidatorInterface {
264264
);
265265

266266
/**
267-
* @notice Creates a merkle proof for the the targetIndex contained in includedTokens.
267+
* @notice Creates a merkle proof for the targetIndex contained in includedTokens.
268268
* @dev `targetIndex` is referring to the index of an element in `includedTokens`.
269269
* `includedTokens` must be sorting in ascending order according to the keccak256 hash of the value.
270270
* @return merkleProof The merkle proof

reference/lib/ReferenceAssertions.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ contract ReferenceAssertions is
3737
) ReferenceGettersAndDerivers(conduitController) {}
3838

3939
/**
40-
* @dev Internal view function to to ensure that the supplied consideration
40+
* @dev Internal view function to ensure that the supplied consideration
4141
* array length on a given set of order parameters is not less than the
4242
* original consideration array length for that order and to retrieve
4343
* the current counter for a given order's offerer and zone and use it

test/foundry/new/helpers/FuzzMutations.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -3060,7 +3060,7 @@ contract FuzzMutations is Test, FuzzExecutor {
30603060

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

30663066
bytes32 firstProofElement = resolver.criteriaProof[0];

0 commit comments

Comments
 (0)