File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -344,8 +344,8 @@ It just ends up returning `Err` to contract-A's `reply` function.
344
344
345
345
Note that errors are not handled with ` ReplyOn::Success ` , meaning, in such a
346
346
case, an error will be treated just like a normal ` message ` returning an error.
347
- This diagram may help explain. Imagine a contract returned two submesssages -
348
- (a) with ` ReplyOn::Success ` and (b) with ` ReplyOn::Error ` :
347
+ This diagram may help explain. Imagine a contract returned two submessages - (a)
348
+ with ` ReplyOn::Success ` and (b) with ` ReplyOn::Error ` :
349
349
350
350
| processing a) | processing b) | reply called | may overwrite result from reply | note |
351
351
| ------------- | ------------- | ------------ | ------------------------------- | ------------------------------------------------- |
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ pub struct InstantiateMsg {}
18
18
#[ cw_serde]
19
19
pub enum ExecuteMsg {
20
20
/// Cleans up the given number of state elements.
21
- /// Call this multiple times to increamentally clean up state.
21
+ /// Call this multiple times to incrementally clean up state.
22
22
Cleanup {
23
23
/// The number of state elements to delete.
24
24
///
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ fn serialize_unsigned_transaction(
63
63
64
64
/// Get the recovery param from the value `v` when no chain ID for replay protection is used.
65
65
///
66
- /// This is needed for chain-agnostig aignatures like signed text.
66
+ /// This is needed for chain-agnostic signatures like signed text.
67
67
///
68
68
/// See [EIP-155] for how `v` is composed.
69
69
///
@@ -78,7 +78,7 @@ pub fn get_recovery_param(v: u8) -> StdResult<u8> {
78
78
79
79
/// Get the recovery param from the value `v` when a chain ID for replay protection is used.
80
80
///
81
- /// This is needed for chain-agnostig aignatures like signed text.
81
+ /// This is needed for chain-agnostic signatures like signed text.
82
82
///
83
83
/// See [EIP-155] for how `v` is composed.
84
84
///
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ contract checks the availability early on.
96
96
97
97
When functionality is always present in the VM (such as a new import implemented
98
98
directly in the VM, see [ #1299 ] ), we should not use capability. They just create
99
- fragmentation in the CosmWasm ecosystem and increase the barrier for adoption.
99
+ fragmentation in the CosmWasm ecosystem and increase the barrier to adoption.
100
100
Instead the ` check_wasm_imports ` check is used to validate this when the
101
101
contract is stored.
102
102
You can’t perform that action at this time.
0 commit comments