Skip to content

Commit c1c0916

Browse files
chore: update documentation from cosmos-sdk/docs (#255)
1 parent 5736845 commit c1c0916

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/build/building-apps/upgrades/0.52.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ if err != nil {
322322

323323
The vesting account message and CLI are removed. Existing vesting accounts remain, but you cannot create new ones.
324324

325-
In order to create new vesting accounts you need to add the accounts module to your chain. We provide vesting acccounts by default which have simlar logic to the previous vesting accounts. If you would like custom vesting accounts, they can be implemented in `x/accounts`.
325+
In order to create new vesting accounts you need to add the accounts module to your chain. We provide vesting accounts by default which have similar logic to the previous vesting accounts. If you would like custom vesting accounts, they can be implemented in `x/accounts`.
326326

327327
### Introducing x/accounts AccountNumber
328328

docs/build/rfc/rfc-004-accounts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ their structure and functionality.
5151
Instead of representing accounts as simple `google.Protobuf.Any` structures stored in state with no business logic
5252
attached, this proposal suggests a more sophisticated account representation that is closer to module entities.
5353
In fact, accounts should be able to receive messages and process them in the same way modules do, and be capable of storing
54-
state in a isolated (prefixed) portion of state belonging only to them, in the same way as modules do.
54+
state in an isolated (prefixed) portion of state belonging only to them, in the same way as modules do.
5555

5656
### Account Message Reception
5757

docs/learn/advanced/17-autocli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ To sign a file `sign-file` command offers some helpful flags:
304304
--encoding string Choose an encoding method for the file content to be added as msg data (no-encoding|base64|hex) (default "no-encoding")
305305
--indent string Choose an indent for the tx (default " ")
306306
--notEmitUnpopulated Don't show unpopulated fields in the tx
307-
--output string Choose an output format for the tx (json|text (default "json")
307+
--output string Choose an output format for the tx (json|text) (default "json")
308308
--output-document string The document will be written to the given file instead of STDOUT
309309
```
310310

docs/learn/beginner/00-app-anatomy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ Note that `sdk.Msg`s are bundled in [transactions](../advanced/01-transactions.m
187187

188188
When a valid block of transactions is received by the full-node, CometBFT relays each one to the application via [`DeliverTx`](https://docs.cometbft.com/v0.37/spec/abci/abci++_app_requirements#specifics-of-responsedelivertx). Then, the application handles the transaction:
189189

190-
1. Upon receiving the transaction, the application first unmarshalls it from `[]byte`.
190+
1. Upon receiving the transaction, the application first unmarshals it from `[]byte`.
191191
2. Then, it verifies a few things about the transaction like [fee payment and signatures](./04-gas-fees.md#antehandler) before extracting the `Msg`(s) contained in the transaction.
192192
3. `sdk.Msg`s are encoded using Protobuf [`Any`s](#register-codec). By analyzing each `Any`'s `type_url`, baseapp's `msgServiceRouter` routes the `sdk.Msg` to the corresponding module's `Msg` service.
193193
4. If the message is successfully processed, the state is updated.

0 commit comments

Comments
 (0)