Skip to content

Commit

Permalink
docs: fix typos (gnolang#2512)
Browse files Browse the repository at this point in the history
docs: fix typos

---------

Co-authored-by: Morgan Bazalgette <[email protected]>
  • Loading branch information
2 people authored and gfanton committed Jul 23, 2024
1 parent 5761117 commit 7f063a0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ You should have received a copy of the GNO Network General Public License along
with this program. If not, see <https://gno.land/license>.

Attached below are the terms of the GNO Network General Public License, Version
4 (a fork of the GNU Afferro General Public License 3).
4 (a fork of the GNU Affero General Public License 3).

## Additional Terms

Expand Down Expand Up @@ -409,7 +409,7 @@ that material) supplement the terms of this License with terms:
- g) Requiring strong attribution such as notices on any user interfaces
that run or convey any covered work, such as a prominent link to a URL
on the header of a website, such that all users of the covered work may
become aware of the the notice, for a period no longer than 20 years.
become aware of the notice, for a period no longer than 20 years.

All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
Expand Down
2 changes: 1 addition & 1 deletion docs/concepts/effective-gno.md
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ In this example, `GetPost` is a function that retrieves a post from the
loading any other posts.

In the future, we plan to add built-in "map" support that will match the
efficienty of an `avl.Tree` while offering a more intuitive API. Until then, if
efficiency of an `avl.Tree` while offering a more intuitive API. Until then, if
you're dealing with a compact dataset, it's probably best to use slices.
For larger datasets where you need to quickly retrieve elements by keys,
`avl.Tree` is the way to go.
Expand Down
2 changes: 1 addition & 1 deletion docs/concepts/stdlibs/gnopher-hole.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ id: gnopher-hole-stdlib

## Native bindings

Gno has support for "natively-defined" functions exclusively within the standard
Gno has support for "natively-defined" functions exclusively within the standard
libraries. These are functions which are _declared_ in Gno code, but only _defined_
in Go. There are generally three reasons why a function should be natively
defined:
Expand Down
4 changes: 2 additions & 2 deletions docs/how-to-guides/creating-grc20.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Our **GRC20** Realm will have the following functionality:

## 1. Importing token package
For this realm, we import the `grc20` package, as this includes
the main functionality of our token realm. The package can be found the
the main functionality of our token realm. The package can be found at the
`gno.land/p/demo/grc/grc20` path.

[embedmd]:# (../assets/how-to-guides/creating-grc20/mytoken-1.gno go)
Expand Down Expand Up @@ -55,7 +55,7 @@ The code snippet above does the following:
pointer to the GRC20 token type, `grc20.AdminToken`,
- Defines and sets the value of `admin` with a type of `std.Address` to contain
the address of the deployer
- Initializes `mytoken` as a new GRC20 token, and set its name, symbol, and
- Initializes `mytoken` as a new GRC20 token, and sets its name, symbol, and
decimal values,
- Mint 1 million units of `My Token` and assign them to the admin's address.

Expand Down
4 changes: 2 additions & 2 deletions examples/gno.land/r/gnoland/pages/page_license.gno
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ You should have received a copy of the GNO Network General Public License along
with this program. If not, see <https://gno.land/license>.
Attached below are the terms of the GNO Network General Public License, Version
4 (a fork of the GNU Afferro General Public License 3).
4 (a fork of the GNU Affero General Public License 3).
## Additional Terms
Expand Down Expand Up @@ -409,7 +409,7 @@ that material) supplement the terms of this License with terms:
- g) Requiring strong attribution such as notices on any user interfaces
that run or convey any covered work, such as a prominent link to a URL
on the header of a website, such that all users of the covered work may
become aware of the the notice, for a period no longer than 20 years.
become aware of the notice, for a period no longer than 20 years.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
Expand Down

0 comments on commit 7f063a0

Please sign in to comment.