diff --git a/developerDocs/getting-started.md b/developerDocs/getting-started.md index 08cd6e705..c5c83512f 100644 --- a/developerDocs/getting-started.md +++ b/developerDocs/getting-started.md @@ -116,7 +116,7 @@ const offer = await openseaSDK.createCollectionOffer({ #### Creating English Auctions -English Auctions are auctions that start at a small amount (we recommend even doing 0!) and increase with every bid. At expiration time, the item sells to the highest bidder. +English Auctions are auctions that start at a small amount (we recommend even using 0!) and increase with every bid. At expiration time, the item sells to the highest bidder. To create an English Auction set `englishAuction` to `true`: diff --git a/src/sdk.ts b/src/sdk.ts index b7cb52393..d3434be80 100644 --- a/src/sdk.ts +++ b/src/sdk.ts @@ -437,7 +437,7 @@ export class OpenSeaSDK { * @param options.buyerAddress Optional address that's allowed to purchase this item. If specified, no other address will be able to take the order, unless its value is the null address. * @param options.englishAuction If true, the order will be listed as an English auction. * @param options.excludeOptionalCreatorFees If true, optional creator fees will be excluded from the listing. Default: false. - * @param options.zone The zone to use for the order. For order protection, pass SIGNED_ZONE. If unspecified, defaults to no zone. + * @param options.zone The zone to use for the order. For order protection, pass SIGNED_ZONE. If unspecified, defaults to no zone. * @returns The {@link OrderV2} that was created. * * @throws Error if the asset does not contain a token id.