Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/01-prerequisites.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/03-build-a-module.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

<Note>
Before continuing, you must follow the [Prerequisites guide](./01-prerequisites.md) to make sure everything is installed.
Expand Down