Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos and improve documentation clarity #5985

Merged
merged 3 commits into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/content/hardhat-chai-matchers/docs/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ expect("0x1234").to.be.properHex(4);

### `.hexEqual`

Assert that the given strings hexadecimal strings correspond to the same numerical value:
Assert that the given hexadecimal strings correspond to the same numerical value:

```ts
expect("0x00012AB").to.hexEqual("0x12ab");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ main().catch((error) => {
});
```

Finnaly, run the deployment script by typing:
Finally, run the deployment script by typing:

```sh
npx hardhat run scripts/deploy.ts --network goerli
Expand Down
2 changes: 1 addition & 1 deletion packages/hardhat-web3-v4/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ require("@nomicfoundation/hardhat-web3-v4");
Or, if you are using TypeScript, add this to your `hardhat.config.ts`:

```js
import "@nomifoundation/hardhat-web3-v4";
import "@nomicfoundation/hardhat-web3-v4";
```

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/).
Expand Down