Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
chipshort committed Sep 30, 2022
1 parent 42bec3c commit 441474f
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion contracts/cw20-ics20/README.md
@@ -1,7 +1,7 @@
# CW20 ICS20

This is an *IBC Enabled* contract that allows us to send CW20 tokens from one chain over the standard ICS20
protocol to the bank module of another chain. In short, it let's us send our custom CW20 tokens with IBC and use
protocol to the bank module of another chain. In short, it lets us send our custom CW20 tokens with IBC and use
them just like native tokens on other chains.

It is only designed to send tokens and redeem previously sent tokens. It will not mint tokens belonging
Expand Down
2 changes: 1 addition & 1 deletion contracts/cw20-ics20/src/lib.rs
@@ -1,6 +1,6 @@
/*!
This is an *IBC Enabled* contract that allows us to send CW20 tokens from one chain over the standard ICS20
protocol to the bank module of another chain. In short, it let's us send our custom CW20 tokens with IBC and use
protocol to the bank module of another chain. In short, it lets us send our custom CW20 tokens with IBC and use
them just like native tokens on other chains.
It is only designed to send tokens and redeem previously sent tokens. It will not mint tokens belonging
Expand Down
2 changes: 1 addition & 1 deletion packages/cw1/README.md
Expand Up @@ -6,7 +6,7 @@ where one contract is meant to hold assets (or rights) on behalf of
other contracts.

The simplest example is a contract that will accept messages from
the creator and resend them from it's address. Simply by making this
the creator and resend them from its address. Simply by making this
transferable, you can then begin to transfer non-transferable assets
(eg. staked tokens, voting power, etc).

Expand Down
2 changes: 1 addition & 1 deletion packages/cw1/src/lib.rs
Expand Up @@ -5,7 +5,7 @@ where one contract is meant to hold assets (or rights) on behalf of
other contracts.
The simplest example is a contract that will accept messages from
the creator and resend them from it's address. Simply by making this
the creator and resend them from its address. Simply by making this
transferable, you can then begin to transfer non-transferable assets
(eg. staked tokens, voting power, etc).
Expand Down
4 changes: 2 additions & 2 deletions packages/cw2/README.md
Expand Up @@ -5,10 +5,10 @@ of the contract. The APIs used for `ExecuteMsg` or `QueryMsg`.
However, when we wish to migrate or inspect smart contract info,
we need some form of smart contract information embedded on state.

This is where CW2 comes in. It specifies on special Item to
This is where CW2 comes in. It specifies a special Item to
be stored on disk by all contracts on `instantiate`.

`ContractInfo` is must be stored under `"contract_info"` key which translates
`ContractInfo` must be stored under the `"contract_info"` key which translates
to `"636F6E74726163745F696E666F"` in hex format.
Since the state is well defined, we do not need to support any "smart queries".
We do provide a helper to construct a "raw query" to read the ContractInfo
Expand Down
4 changes: 2 additions & 2 deletions packages/cw2/src/lib.rs
Expand Up @@ -4,10 +4,10 @@ of the contract. The APIs used for `ExecuteMsg` or `QueryMsg`.
However, when we wish to migrate or inspect smart contract info,
we need some form of smart contract information embedded on state.
This is where CW2 comes in. It specifies on special Item to
This is where CW2 comes in. It specifies a special Item to
be stored on disk by all contracts on `instantiate`.
`ContractInfo` is must be stored under `"contract_info"` key which translates
`ContractInfo` must be stored under the `"contract_info"` key which translates
to `"636F6E74726163745F696E666F"` in hex format.
Since the state is well defined, we do not need to support any "smart queries".
We do provide a helper to construct a "raw query" to read the ContractInfo
Expand Down
4 changes: 2 additions & 2 deletions packages/cw4/README.md
Expand Up @@ -12,9 +12,9 @@ the ones laid out here should be under the specified keys and in the
same format.

In this case, a cw3 contract could *read* an external group contract with
no significant cost more than reading local storage. However, updating
no significant cost besides reading local storage. However, updating
that group contract (if allowed), would be an external message and
charged the instantiation overhead for each contract.
will be charged as part of the overhead for each contract.

## Messages

Expand Down
4 changes: 2 additions & 2 deletions packages/cw4/src/lib.rs
Expand Up @@ -11,9 +11,9 @@ the ones laid out here should be under the specified keys and in the
same format.
In this case, a cw3 contract could *read* an external group contract with
no significant cost more than reading local storage. However, updating
no significant cost besides reading local storage. However, updating
that group contract (if allowed), would be an external message and
charged the instantiation overhead for each contract.
will be charged as part of the overhead for each contract.
For more information on this specification, please check out the
[README](https://github.com/CosmWasm/cw-plus/blob/main/packages/cw4/README.md).
Expand Down

0 comments on commit 441474f

Please sign in to comment.