Skip to content

Commit e887e8c

Browse files
committed
Sylvia tutorial fix tests
1 parent aeb3577 commit e887e8c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/pages/tutorial/sylvia-contract/entry-points.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ to manually create them, and we can rely on a macro to do that for us.
3030

3131
Let's add the [`entry_points`](../../sylvia/macros/entry-points) attribute macro to our contract:
3232

33-
```rust {3, 7} copy filename="src/contract.rs" template="sylvia/empty"
33+
```rust {3, 7} copy filename="src/contract.rs" template="sylvia-empty"
3434
use sylvia::ctx::InstantiateCtx;
3535
use sylvia::cw_std::{Response, StdResult};
3636
use sylvia::{contract, entry_points};

src/pages/tutorial/sylvia-contract/first-messages.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pub mod contract;
1818

1919
Now let's create an `instantiate` method for our contract. In `src/contract.rs`
2020

21-
```rust copy filename="src/contract.rs" template="sylvia/empty"
21+
```rust copy filename="src/contract.rs" template="sylvia-empty"
2222
use sylvia::cw_std::{Response, StdResult};
2323
use sylvia::contract;
2424
use sylvia::ctx::InstantiateCtx;

0 commit comments

Comments
 (0)