Skip to content

Commit 7c035e2

Browse files
authored
Merge pull request #2303 from omahs/patch-2
Fix typos
2 parents 123d414 + 350f88e commit 7c035e2

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

SEMANTICS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,8 +344,8 @@ It just ends up returning `Err` to contract-A's `reply` function.
344344

345345
Note that errors are not handled with `ReplyOn::Success`, meaning, in such a
346346
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`:
349349

350350
| processing a) | processing b) | reply called | may overwrite result from reply | note |
351351
| ------------- | ------------- | ------------ | ------------------------------- | ------------------------------------------------- |

contracts/burner/src/msg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pub struct InstantiateMsg {}
1818
#[cw_serde]
1919
pub 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
///

contracts/crypto-verify/src/ethereum.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
///

docs/CAPABILITIES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ contract checks the availability early on.
9696

9797
When functionality is always present in the VM (such as a new import implemented
9898
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.
100100
Instead the `check_wasm_imports` check is used to validate this when the
101101
contract is stored.
102102

0 commit comments

Comments
 (0)