Skip to content

Commit 1c162de

Browse files
omahsthehowl
andauthoredJul 5, 2024··
docs: fix typos (#2512)
docs: fix typos --------- Co-authored-by: Morgan Bazalgette <[email protected]>
1 parent c697ccf commit 1c162de

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed
 

‎LICENSE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ You should have received a copy of the GNO Network General Public License along
2020
with this program. If not, see <https://gno.land/license>.
2121

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

2525
## Additional Terms
2626

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

414414
All other non-permissive additional terms are considered "further
415415
restrictions" within the meaning of section 10. If the Program as you

‎docs/concepts/effective-gno.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ In this example, `GetPost` is a function that retrieves a post from the
597597
loading any other posts.
598598

599599
In the future, we plan to add built-in "map" support that will match the
600-
efficienty of an `avl.Tree` while offering a more intuitive API. Until then, if
600+
efficiency of an `avl.Tree` while offering a more intuitive API. Until then, if
601601
you're dealing with a compact dataset, it's probably best to use slices.
602602
For larger datasets where you need to quickly retrieve elements by keys,
603603
`avl.Tree` is the way to go.

‎docs/concepts/stdlibs/gnopher-hole.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ id: gnopher-hole-stdlib
66

77
## Native bindings
88

9-
Gno has support for "natively-defined" functions exclusively within the standard
9+
Gno has support for "natively-defined" functions exclusively within the standard
1010
libraries. These are functions which are _declared_ in Gno code, but only _defined_
1111
in Go. There are generally three reasons why a function should be natively
1212
defined:

‎docs/how-to-guides/creating-grc20.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Our **GRC20** Realm will have the following functionality:
1717

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

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

‎examples/gno.land/r/gnoland/pages/page_license.gno

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ You should have received a copy of the GNO Network General Public License along
2020
with this program. If not, see <https://gno.land/license>.
2121

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

2525
## Additional Terms
2626

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

414414
All other non-permissive additional terms are considered "further
415415
restrictions" within the meaning of section 10. If the Program as you

0 commit comments

Comments
 (0)
Please sign in to comment.