Skip to content

Commit

Permalink
[TOOL-3276] SDK: Fix JSDoc comments of download function
Browse files Browse the repository at this point in the history
  • Loading branch information
MananTank committed Jan 31, 2025
1 parent ca75681 commit 8a0da5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/thirdweb/src/storage/download.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export type DownloadOptions = Prettify<
* Download a file from IPFS:
* ```ts
* import { download } from "thirdweb/storage";
* import { createThirdwebClient } from "@thirdweb-dev/sdk";
* import { createThirdwebClient } from "thirdweb";
*
* const client = createThirdwebClient({ clientId: "YOUR_CLIENT_ID" });
*
Expand All @@ -38,7 +38,7 @@ export type DownloadOptions = Prettify<
* Download a file from Arweave:
* ```ts
* import { download } from "thirdweb/storage";
* import { createThirdwebClient } from "@thirdweb-dev/sdk";
* import { createThirdwebClient } from "thirdweb";
*
* const client = createThirdwebClient({ clientId: "YOUR_CLIENT_ID" });
*
Expand All @@ -51,7 +51,7 @@ export type DownloadOptions = Prettify<
* Download a file from HTTP:
* ```ts
* import { download } from "thirdweb/storage";
* import { createThirdwebClient } from "@thirdweb-dev/sdk";
* import { createThirdwebClient } from "thirdweb";
*
* const client = createThirdwebClient({ clientId: "YOUR_CLIENT_ID" });
*
Expand Down

0 comments on commit 8a0da5e

Please sign in to comment.