diff --git a/docs/01-prerequisites.md b/docs/01-prerequisites.md index 46dc6da..4107da6 100644 --- a/docs/01-prerequisites.md +++ b/docs/01-prerequisites.md @@ -40,7 +40,7 @@ Verify: `go env GOPATH` ## Make -Make is used to run build and development commands throughout the tutorial. +Make is used to run build and development commands throughout this tutorial. ```bash make --version @@ -74,7 +74,7 @@ git --version ## Clone the repository -Clone [cosmos/example](https://github.com/cosmos/example) and navigate into it: +Clone [cosmos/example](https://github.com/cosmos/example) and navigate into it. ```bash git clone https://github.com/cosmos/example diff --git a/docs/03-build-a-module.md b/docs/03-build-a-module.md index 026206b..8e9a593 100644 --- a/docs/03-build-a-module.md +++ b/docs/03-build-a-module.md @@ -2,7 +2,7 @@ In [quickstart](./02-quickstart.md), you started a chain and submitted a transaction to increase the counter. In this tutorial, you'll build a simple counter module from scratch. It follows the same overall structure as the full `x/counter`, but uses a stripped-down version so you can focus on the core steps of building and wiring a module yourself. -By the end, you'll have built a working module and wired it into a running chain. For a deeper dive into how modules work in the Cosmos SDK, see [Intro to Modules](https://docs.cosmos.network/sdk/next/learn/concepts/modules). +By the end, you'll have built a working module and wired it into a running chain. For a deeper dive into how modules work in the Cosmos SDK, see [Intro to Modules](https://docs.cosmos.network/sdk/next/learn/concepts/modules). Before continuing, you must follow the [Prerequisites guide](./01-prerequisites.md) to make sure everything is installed.