From dc398a92ea9466ea5762ee5b6ae546eee26b42ad Mon Sep 17 00:00:00 2001 From: XxAlex74xX <30472093+XxAlex74xX@users.noreply.github.com> Date: Sat, 4 Jan 2025 13:29:04 +0100 Subject: [PATCH 1/2] Update counter.mdx --- src/pages/cw-multi-test/getting-started/counter.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/cw-multi-test/getting-started/counter.mdx b/src/pages/cw-multi-test/getting-started/counter.mdx index 5ccf6539..4fec2b95 100644 --- a/src/pages/cw-multi-test/getting-started/counter.mdx +++ b/src/pages/cw-multi-test/getting-started/counter.mdx @@ -83,7 +83,7 @@ tree     └── lib.rs ``` -By convention, the source code of the smart contract is placed in the file named **contract.rs**, +By convention, the source code of the smart contract is placed in a file named **contract.rs**, and the messages processed by this contract are usually placed in file named **msg.rs**. Both files should be stored in `src` directory. From cf0a277b41b72d12e18eebd826f079bc1597036d Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 12:37:57 +0000 Subject: [PATCH 2/2] [autofix.ci] apply automated fixes --- src/pages/cw-multi-test/getting-started/counter.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/cw-multi-test/getting-started/counter.mdx b/src/pages/cw-multi-test/getting-started/counter.mdx index 4fec2b95..acb2da8f 100644 --- a/src/pages/cw-multi-test/getting-started/counter.mdx +++ b/src/pages/cw-multi-test/getting-started/counter.mdx @@ -83,8 +83,8 @@ tree     └── lib.rs ``` -By convention, the source code of the smart contract is placed in a file named **contract.rs**, -and the messages processed by this contract are usually placed in file named **msg.rs**. Both files +By convention, the source code of the smart contract is placed in a file named **contract.rs**, and +the messages processed by this contract are usually placed in file named **msg.rs**. Both files should be stored in `src` directory. Let's create an empty **contract.rs** file...