Skip to content

Commit e4fd641

Browse files
authored
Merge pull request CosmWasm#1275 from rtviii/patch-2
Update README.md
1 parent 07c0495 commit e4fd641

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -271,12 +271,12 @@ pub struct Region {
271271

272272
## Implementing the Smart Contract
273273

274-
If you followed the [instructions above](#Creating), you should have a runable
275-
smart contract. You may notice that all of the Wasm exports are taken care of by
276-
`lib.rs`, which you shouldn't need to modify. What you need to do is simply look
277-
in `contract.rs` and implement `instantiate` and `execute` functions, defining
278-
your custom `InstantiateMsg` and `ExecuteMsg` structs for parsing your custom
279-
message types (as json):
274+
If you followed the [instructions above](#Creating-a-smart-contract), you should
275+
have a runable smart contract. You may notice that all of the Wasm exports are
276+
taken care of by `lib.rs`, which you shouldn't need to modify. What you need to
277+
do is simply look in `contract.rs` and implement `instantiate` and `execute`
278+
functions, defining your custom `InstantiateMsg` and `ExecuteMsg` structs for
279+
parsing your custom message types (as json):
280280

281281
```rust
282282
#[entry_point]

0 commit comments

Comments
 (0)