Skip to content

Commit

Permalink
Update good-practices.mdx
Browse files Browse the repository at this point in the history
  • Loading branch information
KyryloKilin authored Jan 28, 2025
1 parent 247b8f6 commit 2089aea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/tutorial/cw-contract/good-practices.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ pub fn query(deps: Deps, env: Env, msg: QueryMsg) -> StdResult<Binary> {
I changed the visibility of all modules - as our crate can now be used as a dependency. If someone
would like to do so, he may need access to handlers or state.

The next step is to create a tool generating actual schemas. We will do it by creating an binary in
The next step is to create a tool generating actual schemas. We will do it by creating a binary in
our crate. Create a new `src/bin/schema.rs` file:

```rust filename="src/bin/schema.rs"
Expand Down

0 comments on commit 2089aea

Please sign in to comment.