Skip to content

Commit

Permalink
docs: fix typos (gnolang#1533)
Browse files Browse the repository at this point in the history
Co-authored-by: Morgan <[email protected]>
Co-authored-by: Leon Hudak <[email protected]>
  • Loading branch information
3 people authored and gfanton committed Jan 18, 2024
1 parent 0ac3f97 commit ba5f754
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ Inside `lsp#register_server()`, you also have to replace
`workspace_config.root` and `workspace_config.gno` with the correct directories
from your machine.

Additionaly, it's not possible to use `gofumpt` for code formatting with
Additionally, it's not possible to use `gofumpt` for code formatting with
`gnols` for now.

#### Emacs Support
Expand Down
4 changes: 2 additions & 2 deletions docs/concepts/standard-library/banker.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The Banker module can be cast into 4 subtypes of bankers that expose different f

1. `BankerTypeReadOnly` - read-only access to coin balances
2. `BankerTypeOrigSend` - full access to coins sent with the transaction that called the banker
3. `BankerTypeRealmSend` - full access to coins that the realm itself owns, including the ones sent with the transaciton
3. `BankerTypeRealmSend` - full access to coins that the realm itself owns, including the ones sent with the transaction
4. `BankerTypeRealmIssue` - able to issue new coins

The Banker API can be found in under the `std` package [reference](../../reference/standard-library/std/banker.md).
The Banker API can be found under the `std` package [reference](../../reference/standard-library/std/banker.md).
2 changes: 1 addition & 1 deletion docs/concepts/tendermint2.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on https://github.com/tendermint/tendermint2.**
* Minimal code - keep total footprint small.
* Minimal dependencies - all dependencies must get audited, and become part of
the repo.
* Modular dependencies - whereever reasonable, make components modular.
* Modular dependencies - wherever reasonable, make components modular.
* Completeness - software projects that don't become finished are projects
that are forever vulnerable. One of the primary goals of the Gno language
and related works is to become finished within a reasonable timeframe.
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/standard-library/std/banker.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Returns `Banker` of the specified type.
- `BankerType` - type of Banker to get:
- `BankerTypeReadOnly` - read-only access to coin balances
- `BankerTypeOrigSend` - full access to coins sent with the transaction that calls the banker
- `BankerTypeRealmSend` - full access to coins that the realm itself owns, including the ones sent with the transaciton
- `BankerTypeRealmSend` - full access to coins that the realm itself owns, including the ones sent with the transaction
- `BankerTypeRealmIssue` - able to issue new coins

#### Usage
Expand Down

0 comments on commit ba5f754

Please sign in to comment.