Skip to content

Commit 05d7e38

Browse files
authored
Minor grammar fixes. (#2549)
1 parent c6b61c1 commit 05d7e38

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

contracts/ibc-reflect/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This is a simple contract to demonstrate using contracts using IBC messages. The
44
first case we build is to simulate the `reflect` contract on another chain. That
5-
is, you can send a message over IBC to the reflect contract and it will
5+
is, you can send a message over IBC to the `reflect` contract, and it will
66
"reflect" that message on the remote chain as if it sent it.
77

88
This is inspired by
@@ -25,7 +25,7 @@ point), it will create a new `reflect` contract instance. The reflect `code_id`
2525
must be set when initializing the factory. This `reflect` contract address will
2626
be saved and connected to the channel.
2727

28-
Once the channel is fully established and the reflect contract instantiated it
28+
Once the channel is fully established and the `reflect` contract instantiated it
2929
will expect a `RunTx` message, which contains `Vec<CosmosMsg>`. When this
3030
message is received, it will execute it on the `reflect` contract, performing
3131
the requested action on behalf of the remote user.

contracts/reflect/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ cargo generate --git https://github.com/confio/cosmwasm-template.git --name YOUR
2929
```
3030

3131
You will now have a new folder called `YOUR_NAME_HERE` (I hope you changed that
32-
to something else) containing a simple working contract and build system that
32+
to something else) containing a simple working contract and a build system that
3333
you can customize.
3434

3535
## Create a Repo
@@ -49,7 +49,7 @@ git push -u origin main
4949

5050
## CI Support
5151

52-
We have templates for both github actions and Circle CI in the generated
52+
We have templates for both GitHub actions and Circle CI in the generated
5353
project, so you can get up and running with CI right away. One note is that the
5454
CI runs all `cargo` commands with `--locked` to ensure it uses the exact same
5555
versions as you have locally. This also means you must have an up-to-date

0 commit comments

Comments
 (0)