Skip to content

Commit 65ac59c

Browse files
authored
Merge pull request #2166 from rootdiae/typo
Docs: fix typos
2 parents d679bdd + f0bb7cb commit 65ac59c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CODING_GUIDELINES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This document is an extension to [CONTRIBUTING](./CONTRIBUTING.md) and provides
77
* Code must be well structured:
88
* packages must have a limited responsibility (different concerns can go to different packages),
99
* types must be easy to compose,
10-
* think about maintainbility and testability.
10+
* think about maintainability and testability.
1111
* "Depend upon abstractions, [not] concretions".
1212
* Try to limit the number of methods you are exposing. It's easier to expose something later than to hide it.
1313
* Follow agreed-upon design patterns and naming conventions.

EVENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ sdk.NewEvent(
346346
sdk.NewAttribute("custom", "from contract"),
347347
),
348348

349-
// instantiating contract (first dipatched message)
349+
// instantiating contract (first dispatched message)
350350
sdk.NewEvent(
351351
"instantiate",
352352
sdk.NewAttribute("code_id", fmt.Sprintf("%d", msg.CodeID)),

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ We strongly suggest **to limit the max block gas in the genesis** and not use th
236236
"max_gas": "SET_YOUR_MAX_VALUE",
237237
```
238238

239-
Tip: if you want to lock this down to a permisisoned network, the following script can edit the genesis file
239+
Tip: if you want to lock this down to a permissioned network, the following script can edit the genesis file
240240
to only allow permissioned use of code upload or instantiating:
241241

242242
`sed -i 's/permission": "Everybody"/permission": "Nobody"/' .../config/genesis.json`

x/wasm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ was sent:
6161

6262
If any funds were transferred to the contract as part of the message, or if the contract released funds as part of it's executions,
6363
it will receive the typical events associated with sending tokens from bank. In this case, we instantiate the contract and
64-
provide a initial balance in the same `MsgInstantiateContract`. We see the following events in addition to the above one:
64+
provide an initial balance in the same `MsgInstantiateContract`. We see the following events in addition to the above one:
6565

6666
```json
6767
[

0 commit comments

Comments
 (0)