Skip to content
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

Fix typos in multiple files #1693

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open
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 app/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
)

// GenesisState The genesis state of the blockchain is represented here as a map of raw json
// messages key'd by a identifier string.
// messages key'd by an identifier string.
// The identifier is used to determine which module genesis information belongs
// to so it may be appropriately routed during init chain.
// Within this application default genesis information is retrieved from
Expand Down
4 changes: 2 additions & 2 deletions cosmwasm/contracts/v010/dist/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ you can customize.

## Create a Repo

After generating, you have a initialized local git repo, but no commits, and no
After generating, you have an initialized local git repo, but no commits, and no
remote. Go to a server (eg. github) and create a new upstream repo (called
`YOUR-GIT-URL` below). Then run the following:

Expand All @@ -50,7 +50,7 @@ git push -u origin master
## CI Support

We have templates for both github actions and Circle CI in the generated
project, so you can get up an running with CI right away. One note is that the
project, so you can get up a running with CI right away. One note is that the
CI runs all `cargo` commands with `--locked` to ensure it uses the exact same
versions as you have locally. This also means you must have an up-to-date
`Cargo.lock` file, which is not auto-generated.
Expand Down
2 changes: 1 addition & 1 deletion cosmwasm/contracts/v010/erc20/Developing.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ docker run --rm -v "$(pwd)":/code \
cosmwasm/rust-optimizer:0.9.0
```

We must mount the contract code to `/code`. You can use a absolute path instead
We must mount the contract code to `/code`. You can use an absolute path instead
of `$(pwd)` if you don't want to `cd` to the directory first. The other two
volumes are nice for speedup. Mounting `/code/target` in particular is useful
to avoid docker overwriting your local dev files with root permissions.
Expand Down
2 changes: 1 addition & 1 deletion cosmwasm/contracts/v010/escrow/Developing.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ docker run --rm -v "$(pwd)":/code \
cosmwasm/rust-optimizer:0.8.0
```

We must mount the contract code to `/code`. You can use a absolute path instead
We must mount the contract code to `/code`. You can use an absolute path instead
of `$(pwd)` if you don't want to `cd` to the directory first. The other two
volumes are nice for speedup. Mounting `/code/target` in particular is useful
to avoid docker overwriting your local dev files with root permissions.
Expand Down
4 changes: 2 additions & 2 deletions cosmwasm/contracts/v010/gov/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ you can customize.

## Create a Repo

After generating, you have a initialized local git repo, but no commits, and no
After generating, you have an initialized local git repo, but no commits, and no
remote. Go to a server (eg. github) and create a new upstream repo (called
`YOUR-GIT-URL` below). Then run the following:

Expand All @@ -50,7 +50,7 @@ git push -u origin master
## CI Support

We have templates for both github actions and Circle CI in the generated
project, so you can get up an running with CI right away. One note is that the
project, so you can get up a running with CI right away. One note is that the
CI runs all `cargo` commands with `--locked` to ensure it uses the exact same
versions as you have locally. This also means you must have an up-to-date
`Cargo.lock` file, which is not auto-generated.
Expand Down
4 changes: 2 additions & 2 deletions cosmwasm/contracts/v010/mint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ you can customize.

## Create a Repo

After generating, you have a initialized local git repo, but no commits, and no
After generating, you have an initialized local git repo, but no commits, and no
remote. Go to a server (eg. github) and create a new upstream repo (called
`YOUR-GIT-URL` below). Then run the following:

Expand All @@ -50,7 +50,7 @@ git push -u origin master
## CI Support

We have templates for both github actions and Circle CI in the generated
project, so you can get up an running with CI right away. One note is that the
project, so you can get up a running with CI right away. One note is that the
CI runs all `cargo` commands with `--locked` to ensure it uses the exact same
versions as you have locally. This also means you must have an up-to-date
`Cargo.lock` file, which is not auto-generated.
Expand Down
4 changes: 2 additions & 2 deletions cosmwasm/contracts/v010/reflect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ you can customize.

## Create a Repo

After generating, you have a initialized local git repo, but no commits, and no
After generating, you have an initialized local git repo, but no commits, and no
remote. Go to a server (eg. github) and create a new upstream repo (called
`YOUR-GIT-URL` below). Then run the following:

Expand All @@ -50,7 +50,7 @@ git push -u origin master
## CI Support

We have templates for both github actions and Circle CI in the generated
project, so you can get up an running with CI right away. One note is that the
project, so you can get up a running with CI right away. One note is that the
CI runs all `cargo` commands with `--locked` to ensure it uses the exact same
versions as you have locally. This also means you must have an up-to-date
`Cargo.lock` file, which is not auto-generated.
Expand Down
Loading