Skip to content

Commit f3ab0fd

Browse files
committed
Fix doc typos
1 parent edca806 commit f3ab0fd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ extern "C" fn interface_version_8() -> () {}
279279
extern "C" fn allocate(size: usize) -> u32;
280280
extern "C" fn deallocate(pointer: u32);
281281

282-
// creates an initial state of a contract with a configuration send in the argument msg_ptr
282+
// creates an initial state of a contract with a configuration sent in the argument msg_ptr
283283
extern "C" fn instantiate(env_ptr: u32, info_ptr: u32, msg_ptr: u32) -> u32;
284284
```
285285

docs/CAPABILITIES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ and
8282

8383
## Format
8484

85-
The capability name needs to be allowed as a Wasm export names and be a legal
85+
The capability name needs to be allowed as a Wasm export name and be a legal
8686
function name in Rust and other CosmWasm smart contract languages such as Go. By
8787
convention, the name should be short and all lower ASCII alphanumerical plus
8888
underscores.

docs/ERROR_HANDLING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ from the contract, they have to be deterministic. With the new separation, wasmd
5151
now passes the full contract error message back into the calling contract,
5252
massively improving the debugging experience.
5353

54-
## Handing ibc_packet_receive errors
54+
## Handling ibc_packet_receive errors
5555

5656
From wasmd 0.22 to 0.31 (inclusive), contract errors and VM errors were handled
5757
the same. They got the special treatment of reverting state changes, writing an

0 commit comments

Comments
 (0)