From bb65e871e8e576e094d858a4de6a7a954b9ec360 Mon Sep 17 00:00:00 2001 From: Juan De Souza Date: Wed, 28 Aug 2024 13:20:56 -0300 Subject: [PATCH] Update 03-create-pallet.md (#2066) fixed worspace to workshop typo Co-authored-by: Shawn Tabrizi --- .../en/docs/tutorials/collectibles-workshop/03-create-pallet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/md/en/docs/tutorials/collectibles-workshop/03-create-pallet.md b/content/md/en/docs/tutorials/collectibles-workshop/03-create-pallet.md index 7b03d9271..3c964611e 100644 --- a/content/md/en/docs/tutorials/collectibles-workshop/03-create-pallet.md +++ b/content/md/en/docs/tutorials/collectibles-workshop/03-create-pallet.md @@ -45,7 +45,7 @@ To create a project: ``` In Rust, the `Cargo.toml` file for each package is called the package manifest and it defines configuration settings and dependencies that the package requires. - The `Cargo.toml` file in the `workspace-node-template/pallets/collectibles` folder defines the dependencies for the `collectibles` package you are building. + The `Cargo.toml` file in the `workshop-node-template/pallets/collectibles` folder defines the dependencies for the `collectibles` package you are building. By convention, the source code for Rust projects in Substrate—including pallet modules—is typically in the `src/lib.rs` file. By default, Cargo creates a template `src/main.rs` file for new projects.