Skip to content

chore: fix minor spelling issues #4885

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cosmwasm/cw20-base/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ the repository root: https://github.com/CosmWasm/cw-plus#compiling.
## Importing this contract

You can also import much of the logic of this contract to build another
ERC20-contract, such as a bonding curve, overiding or extending what you
ERC20-contract, such as a bonding curve, overriding or extending what you
need.

Basically, you just need to write your handle function and import
Expand Down
2 changes: 1 addition & 1 deletion cosmwasm/cw20-token-minter/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ fn restrict_symbol(symbol: String) -> String {
if symbol.len() > 12 {
// truncate the symbol to get the last 12 chars
let symbol = &symbol[(symbol.len() - 12)..];
// split it by `/` incase this is a factory token and only get the last part
// split it by `/` in case this is a factory token and only get the last part
let split = symbol.split('/').collect::<Vec<&str>>();
// filter the unwanted chars
let symbol = split[split.len() - 1]
Expand Down
2 changes: 1 addition & 1 deletion cosmwasm/ibc-union/app/ucs03-zkgm/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2862,7 +2862,7 @@ pub fn reply(deps: DepsMut, env: Env, reply: Reply) -> Result<Response, Contract
EXECUTING_PACKET.remove(deps.storage);
match reply.result {
SubMsgResult::Ok(_) => {
// If the execution succedeed one of the acks is guaranteed to exist.
// If the execution succeeded one of the acks is guaranteed to exist.
let execution_ack = (|| -> Result<Bytes, ContractError> {
match EXECUTING_PACKET_IS_BATCH.may_load(deps.storage)? {
Some(expected_acks) => {
Expand Down
2 changes: 1 addition & 1 deletion cosmwasm/ibc-union/app/ucs03-zkgm/src/msg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub struct Config {
pub admin: Addr,
/// The address of the `ibc-union` contract running on this chain.
pub ibc_host: Addr,
/// The code id of the `ucs03-zkgm-token-minter-api` implementor. This will be instantiated by `ucs03-zkgm` and used to mint and burn tokens.
/// The code id of the `ucs03-zkgm-token-minter-api` implementer. This will be instantiated by `ucs03-zkgm` and used to mint and burn tokens.
pub token_minter_code_id: u64,
/// The address that can update the rate limiters.
pub rate_limit_admin: Addr,
Expand Down