From e16ffe73dc5249524bfc9007be140133428f7dc2 Mon Sep 17 00:00:00 2001 From: Juan De Souza Date: Wed, 20 Sep 2023 19:17:55 -0300 Subject: [PATCH] Update 03-create-pallet.md fixed worspace to workshop typo --- .../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 9ac715ec1..93abdd4f8 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 @@ -43,7 +43,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.