From 7ee5ec5f76c70c08d576eb6af68d22ef81aef0cd Mon Sep 17 00:00:00 2001 From: FT <140458077+zeevick10@users.noreply.github.com> Date: Wed, 18 Dec 2024 15:34:49 +0100 Subject: [PATCH 1/2] Update mint.md --- docs/learn/tutorials/dex/pair/mint.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/learn/tutorials/dex/pair/mint.md b/docs/learn/tutorials/dex/pair/mint.md index a22b570..d16f9a4 100644 --- a/docs/learn/tutorials/dex/pair/mint.md +++ b/docs/learn/tutorials/dex/pair/mint.md @@ -378,7 +378,7 @@ The `default` keyword needs to have the attribute `min_specialization` added in ### 5. Implement Event -in the contracts *./cotnracts/pair/lib.rs* file, add the Event struct and override the implementation of emit event: +in the contracts *./contracts/pair/lib.rs* file, add the Event struct and override the implementation of emit event: ```rust ... #[ink(event)] From c4fb1effc601d7b8fbdd2c38cdc04d400eca1681 Mon Sep 17 00:00:00 2001 From: FT <140458077+zeevick10@users.noreply.github.com> Date: Wed, 18 Dec 2024 15:37:41 +0100 Subject: [PATCH 2/2] Update swap.md --- docs/learn/tutorials/dex/pair/swap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/learn/tutorials/dex/pair/swap.md b/docs/learn/tutorials/dex/pair/swap.md index 7fcc688..dd3b267 100644 --- a/docs/learn/tutorials/dex/pair/swap.md +++ b/docs/learn/tutorials/dex/pair/swap.md @@ -244,7 +244,7 @@ pub enum PairError { ## 3. Implement Event -In the contracts *./cotnracts/pair/lib.rs* file, add the Event struct and override the implementation of emit event: +In the contracts *./contracts/pair/lib.rs* file, add the Event struct and override the implementation of emit event: ```rust ... #[ink(event)]