Skip to content

Commit

Permalink
docs: fix typos (#3695)
Browse files Browse the repository at this point in the history
Co-authored-by: Danilo Pantani <[email protected]>
  • Loading branch information
vuittont60 and Pantani authored Oct 16, 2023
1 parent ac10cc5 commit 77b8265
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion docs/docs/02-guide/07-interchange/03-walkthrough.md
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ buyOrderBook:
interchanged q bank balances $(interchanged keys show -a alice --home ~/.mars)
```

The author of the sell order successfuly exchanged 5 marscoin and received 25
The author of the sell order successfully exchanged 5 marscoin and received 25
venuscoin vouchers. The other 5marscoin created a sell order:

```yml
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/02-guide/08-debug.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ To start a debugging session in the terminal run:
ignite chain debug
```

The command runs your blockchan app in the background, attaches to it and
The command runs your blockchain app in the background, attaches to it and
launches a terminal debugger shell:

```
Expand Down
4 changes: 2 additions & 2 deletions docs/versioned_docs/version-v0.25.2/guide/02-hello.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ create x/hello/keeper/grpc_query_hello.go

Let's examine some of these changes. For clarity, the following code blocks do not show the placeholder comments that Ignite CLI uses to scaffold code. Don't delete these placeholders since they are required to continue using Ignite CLI's scaffolding functionality.

Note: it's recommended to commit changes to a version control system (for example, Git) after scaffolding. This allows others to easily distinguish between code generated by Ignite and the code writen by hand.
Note: it's recommended to commit changes to a version control system (for example, Git) after scaffolding. This allows others to easily distinguish between code generated by Ignite and the code written by hand.

```
git add .
Expand All @@ -169,7 +169,7 @@ Here's how the `Hello` rpc for the `Query` service works:
- Returns response of type `QueryHelloResponse`
- The `option` defines the endpoint that is used by gRPC to generate an HTTP API

### Request and reponse types
### Request and response types

Now, take a look at the following request and response types:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ slug: /guide/nameservice

The nameservice tutorial provides step-by-step instructions to build a blockchain app for a nameservice. The goal of the nameservice app is to send tokens between participants so that end users can buy names and set a value to the names.

This tutorial builds on knowlege and skills developed in the earlier tutorials in the Ignite CLI Developer Tutorials. Before you start this building your nameservice app, we recommend that you complete these foundational tutorials:
This tutorial builds on knowledge and skills developed in the earlier tutorials in the Ignite CLI Developer Tutorials. Before you start this building your nameservice app, we recommend that you complete these foundational tutorials:

- [Install Ignite CLI](../01-install.md)
- [Hello, World](../02-hello.md)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ After the transaction is broadcast and included in a block, the blockchain retur

## Query the Chain for a List of Names

Query the chain for a list of name and correponding values. Query commands don't need the `--from` flag, because they don't broadcast transactions and make only free requests.
Query the chain for a list of name and corresponding values. Query commands don't need the `--from` flag, because they don't broadcast transactions and make only free requests.

```bash
nameserviced q nameservice list-whois
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ func (k msgServer) RevealSolution(goCtx context.Context, msg *types.MsgRevealSol
return nil, sdkError
}

// save the udpated scavenge to the store
// save the updated scavenge to the store
k.SetScavenge(ctx, scavenge)
return &types.MsgRevealSolutionResponse{}, nil
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Use the optional `--desc` flag to define a description of the CLI command that i

The token denoms must have the same behavior as described in the `ibc-transfer` module:

- An external token received from a chain has a unique `denom`, reffered to as `voucher`.
- An external token received from a chain has a unique `denom`, referred to as `voucher`.
- When a token is sent to a blockchain and then sent back and received, the chain can resolve the voucher and convert it back to the original token denomination.

`Voucher` tokens are represented as hashes, therefore you must store which original denomination is related to a voucher. You can do this with an indexed type.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ BuyOrderBook:
priceDenom: venuscoin
```
The author of the sell order successfuly exchanged 5 marscoin and received 25 venuscoin vouchers. The other 5marscoin created a sell order:
The author of the sell order successfully exchanged 5 marscoin and received 25 venuscoin vouchers. The other 5marscoin created a sell order:
```yaml
# Source blockchain
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ func (k Keeper) OnRecvCreatePairPacket(ctx sdk.Context, packet channeltypes.Pack
## Receive an IBC Acknowledgement


When an IBC acknowledgement is recieved on the source chain, the module must check whether a book already exists. If not, create a sell order book for the specified denoms.
When an IBC acknowledgement is received on the source chain, the module must check whether a book already exists. If not, create a sell order book for the specified denoms.

Create a new file `x/dex/types/sell_order_book.go`.
Insert the `NewSellOrderBook` function which creates a new sell order book.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ The `ignite scaffold query` command is a tool used to quickly create new
queries. When you run this command, it makes changes to your source code to add
the new query and make it available in your API. This command accepts a query
name (`"say-hello"`) and a list of request fields (in our case only `name`). The
optional `--reponse` flag specifies the return values of the query.
optional `--response` flag specifies the return values of the query.

This command made the following changes to the source code.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ buyOrderBook:
interchanged q bank balances $(interchanged keys show -a alice --home ~/.mars)
```

The author of the sell order successfuly exchanged 5 marscoin and received 25
The author of the sell order successfully exchanged 5 marscoin and received 25
venuscoin vouchers. The other 5marscoin created a sell order:

```yml
Expand Down
2 changes: 1 addition & 1 deletion docs/versioned_docs/version-v0.26.1/02-guide/08-debug.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ To start a debugging session in the terminal run:
ignite chain debug
```

The command runs your blockchan app in the background, attaches to it and
The command runs your blockchain app in the background, attaches to it and
launches a terminal debugger shell:

```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ buyOrderBook:
interchanged q bank balances $(interchanged keys show -a alice --home ~/.mars)
```

The author of the sell order successfuly exchanged 5 marscoin and received 25
The author of the sell order successfully exchanged 5 marscoin and received 25
venuscoin vouchers. The other 5marscoin created a sell order:

```yml
Expand Down
2 changes: 1 addition & 1 deletion docs/versioned_docs/version-v0.27.1/02-guide/08-debug.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ To start a debugging session in the terminal run:
ignite chain debug
```

The command runs your blockchan app in the background, attaches to it and
The command runs your blockchain app in the background, attaches to it and
launches a terminal debugger shell:

```
Expand Down

0 comments on commit 77b8265

Please sign in to comment.