Skip to content

Commit 4be0eec

Browse files
author
Maks
authored
Fix typos and improve documentation clarity (#5985)
* Update README.md * Update oracles.md * Update reference.md
1 parent 0ea1fd5 commit 4be0eec

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/src/content/hardhat-chai-matchers/docs/reference.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ expect("0x1234").to.be.properHex(4);
259259

260260
### `.hexEqual`
261261

262-
Assert that the given strings hexadecimal strings correspond to the same numerical value:
262+
Assert that the given hexadecimal strings correspond to the same numerical value:
263263

264264
```ts
265265
expect("0x00012AB").to.hexEqual("0x12ab");

docs/src/content/hardhat-runner/docs/supporter-guides/oracles.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ main().catch((error) => {
210210
});
211211
```
212212

213-
Finnaly, run the deployment script by typing:
213+
Finally, run the deployment script by typing:
214214

215215
```sh
216216
npx hardhat run scripts/deploy.ts --network goerli

packages/hardhat-web3-v4/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ require("@nomicfoundation/hardhat-web3-v4");
2525
Or, if you are using TypeScript, add this to your `hardhat.config.ts`:
2626

2727
```js
28-
import "@nomifoundation/hardhat-web3-v4";
28+
import "@nomicfoundation/hardhat-web3-v4";
2929
```
3030

3131
By default, contract invocations will not be typesafe. Consider installing [@chainsafe/hardhat-ts-artifact-plugin](https://www.npmjs.com/package/@chainsafe/hardhat-ts-artifact-plugin) to obtain available contract methods and events. Read more about inferring types [here](https://docs.web3js.org/guides/smart_contracts/infer_contract_types_guide/).

0 commit comments

Comments
 (0)