diff --git a/content/courses/tokens-and-nfts/nfts-with-metaplex.md b/content/courses/tokens-and-nfts/nfts-with-metaplex.md index 01e9fe72d..be6ce5a75 100644 --- a/content/courses/tokens-and-nfts/nfts-with-metaplex.md +++ b/content/courses/tokens-and-nfts/nfts-with-metaplex.md @@ -348,7 +348,7 @@ To begin, make a new folder and install the relevant dependencies: npm i @solana/web3.js@1 @solana-developers/helpers@2 @metaplex-foundation/mpl-token-metadata @metaplex-foundation/umi-bundle-defaults @metaplex-foundation/umi-uploader-irys esrun ``` -Then create a file called `create-metaplex-collection.ts`, and add our imports: +Then create a file called `create-metaplex-nft-collection.ts`, and add our imports: ```typescript import { @@ -698,7 +698,7 @@ await airdropIfRequired( const umi = createUmi(connection); -// Substitute in your collection NFT address from create-metaplex-collection.ts +// Substitute in your collection NFT address from create-metaplex-nft-collection.ts const collectionAddress = UMIPublicKey(""); // Substitute in your NFT address from create-metaplex-nft.ts