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.
344344
345345Note that errors are not handled with ` ReplyOn::Success ` , meaning, in such a
346346case, 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 ` :
349349
350350| processing a) | processing b) | reply called | may overwrite result from reply | note |
351351| ------------- | ------------- | ------------ | ------------------------------- | ------------------------------------------------- |
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ pub struct InstantiateMsg {}
1818#[ cw_serde]
1919pub enum ExecuteMsg {
2020 /// 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.
2222 Cleanup {
2323 /// The number of state elements to delete.
2424 ///
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ fn serialize_unsigned_transaction(
6363
6464/// Get the recovery param from the value `v` when no chain ID for replay protection is used.
6565///
66- /// This is needed for chain-agnostig aignatures like signed text.
66+ /// This is needed for chain-agnostic signatures like signed text.
6767///
6868/// See [EIP-155] for how `v` is composed.
6969///
@@ -78,7 +78,7 @@ pub fn get_recovery_param(v: u8) -> StdResult<u8> {
7878
7979/// Get the recovery param from the value `v` when a chain ID for replay protection is used.
8080///
81- /// This is needed for chain-agnostig aignatures like signed text.
81+ /// This is needed for chain-agnostic signatures like signed text.
8282///
8383/// See [EIP-155] for how `v` is composed.
8484///
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ contract checks the availability early on.
9696
9797When functionality is always present in the VM (such as a new import implemented
9898directly 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.
100100Instead the ` check_wasm_imports ` check is used to validate this when the
101101contract is stored.
102102
You can’t perform that action at this time.
0 commit comments