Skip to content

fix: bunch of typos in "navigator" directory #1359

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: main
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/helpers/navigator/SeaportNavigator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ contract SeaportNavigator is SeaportNavigatorInterface {
* @param tokenIds An array of integer token IDs.
* @param id The integer token ID to generate a proof for.
*
* @return Merkle proof that the given token ID is amember of the criteria
* @return Merkle proof that the given token ID is a member of the criteria
* tree containing the given token IDs.
*/
function criteriaProof(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ library NavigatorCriteriaResolverLib {
* @dev Calculate criteria resolvers, merkle proofs, and criteria merkle
* roots for the provided orders and criteria constraints. Modifies
* orders in place to add criteria merkle roots to the appropriate
* offer/consdieration items. Adds calculated criteria resolvers to
* offer/consideration items. Adds calculated criteria resolvers to
* the NavigatorResponse.
*/
function withCriteria(
Expand Down
2 changes: 1 addition & 1 deletion contracts/helpers/navigator/lib/OrderStructureLib.sol
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ library OrderStructureLib {
if (hasCriteria) {
// Unless it's a contract order
if (isContractOrder) {
// And the contract order's critera are all zero
// And the contract order's criteria are all zero
if (hasNonzeroCriteria) {
return Structure.ADVANCED;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ interface SeaportNavigatorInterface {
* @param tokenIds An array of integer token IDs.
* @param id The integer token ID to generate a proof for.
*
* @return Merkle proof that the given token ID is amember of the criteria
* @return Merkle proof that the given token ID is a member of the criteria
* tree containing the given token IDs.
*/
function criteriaProof(
Expand Down
2 changes: 1 addition & 1 deletion contracts/helpers/navigator/lib/SeaportNavigatorTypes.sol
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ struct NavigatorResponse {
*/
OrderDetails[] orderDetails;
/**
* @dev Calculated fulfillment components and combined Fullfiilments.
* @dev Calculated fulfillment components and combined Fullfilments.
*/
FulfillmentComponent[][] offerFulfillments;
FulfillmentComponent[][] considerationFulfillments;
Expand Down