From a16234ef954ba39ef0e9bec0867f65cc9cd9d807 Mon Sep 17 00:00:00 2001 From: Jack Chuma <75458431+jackchuma@users.noreply.github.com> Date: Tue, 8 Oct 2024 10:54:42 -0400 Subject: [PATCH] update file path for new NFT contract in description (#1048) Co-authored-by: wbnns --- apps/base-docs/tutorials/docs/0_deploy-with-foundry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/base-docs/tutorials/docs/0_deploy-with-foundry.md b/apps/base-docs/tutorials/docs/0_deploy-with-foundry.md index bd1784dff3..2fce09022e 100644 --- a/apps/base-docs/tutorials/docs/0_deploy-with-foundry.md +++ b/apps/base-docs/tutorials/docs/0_deploy-with-foundry.md @@ -130,7 +130,7 @@ To add the OpenZeppelin Contracts library to your project, run: forge install openzeppelin/openzeppelin-contracts ``` -In your project, delete the `src/Counter.sol` contract that was generated with the project and add the above code in a new file called `contracts/NFT.sol`. (You can also delete the `test/Counter.t.sol` and `script/Counter.s.sol` files, but you should add your own tests ASAP!). +In your project, delete the `src/Counter.sol` contract that was generated with the project and add the above code in a new file called `src/NFT.sol`. (You can also delete the `test/Counter.t.sol` and `script/Counter.s.sol` files, but you should add your own tests ASAP!). To compile our basic NFT contract using Foundry, run: