diff --git a/server/README.md b/server/README.md index 5ce89c026ef8..3db72a4b3b16 100644 --- a/server/README.md +++ b/server/README.md @@ -85,6 +85,6 @@ func newApp(logger log.Logger, db corestore.KVStoreWithBatch, traceStore io.Writ ``` Note, some of the options provided are exposed via CLI flags in the start command -and some are also allowed to be set in the application's `app.toml`. It is recommend +and some are also allowed to be set in the application's `app.toml`. It is recommended to use the `cast` package for type safety guarantees and due to the limitations of CLI flag types. diff --git a/store/streaming/README.md b/store/streaming/README.md index faa304dec091..d697180f5e89 100644 --- a/store/streaming/README.md +++ b/store/streaming/README.md @@ -4,7 +4,7 @@ This package contains an extensible plugin system for the Cosmos-SDK. The plugin Although the `go-plugin` is built to work over RPC, it is currently only designed to work over a local network. -## Pre requisites +## Prerequisites For an overview of supported features by the `go-plugin` system, please see https://github.com/hashicorp/go-plugin. The `go-plugin` documentation is located [here](https://github.com/hashicorp/go-plugin/tree/master/docs). You can also directly visit any of the links below: diff --git a/x/authz/README.md b/x/authz/README.md index 405bd5427e6a..d426ddcbe949 100644 --- a/x/authz/README.md +++ b/x/authz/README.md @@ -34,7 +34,7 @@ granting arbitrary privileges from one account (the granter) to another account ### Authorization and Grant -The `x/authz` module defines interfaces and messages grant authorizations to perform actions +The x/authz module defines interfaces and messages that grant authorizations to perform actions on behalf of one account to other accounts. The design is defined in the [ADR 030](https://github.com/cosmos/cosmos-sdk/blob/main/docs/architecture/adr-030-authz-module.md). A *grant* is an allowance to execute a Msg by the grantee on behalf of the granter. @@ -48,7 +48,7 @@ https://github.com/cosmos/cosmos-sdk/blob/v0.52.0-beta.1/x/authz/authorizations. ### Built-in Authorizations -The Cosmos SDK `x/authz` module comes with following authorization types: +The Cosmos SDK x/authz module comes with the following authorization types: #### GenericAuthorization