Skip to content

Commit

Permalink
docs: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Jun 14, 2023
1 parent 31cc4ed commit 5210b68
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs.wrm/migrating.wrm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This guide aims to capture some of the high-level differences
between v5 and v6 to help those migrating an existing app and
those already familiar with v5 that just need a quick primer.

The biggest differnce in v6 is the use of modern ES6 features,
The biggest difference in v6 is the use of modern ES6 features,
so a lot of changes are largely internal.

- [BigNumbers](migrate-bigint)
Expand Down Expand Up @@ -172,7 +172,7 @@ managed as a monorepo.

In v6 all imports are available in the root package, and for those
who wish to have finer-grained control, the ``pkg.exports`` makes
certain folders avilable directly.
certain folders available directly.

_code: importing in v5 @lang<script>

Expand Down Expand Up @@ -314,7 +314,7 @@ _code: fetching content @lang<script>
url, user: "username", password: "password"
// etc. properties have FetchRequest equivalents
};
data = await ethers.utils.detchJson(req, json, processFunc)
data = await ethers.utils.fetchJson(req, json, processFunc)

// v6
req = new ethers.FetchRequest(url)
Expand Down

0 comments on commit 5210b68

Please sign in to comment.