Skip to content

Commit 46ad469

Browse files
authored
Merge pull request #19 from omahs/patch-1
docs: fix typos
2 parents aa3025b + 23a843e commit 46ad469

4 files changed

+4
-4
lines changed

docs/disable-type-linting-error-checks.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ TypeScript helps you catch errors at compile time, which can save time and impro
1010

1111
## Disabling Commit Checks
1212

13-
We run the `pre-commit` [git hook](https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks) which lints the staged files and doesn't let you commit if there is an linting error.
13+
We run the `pre-commit` [git hook](https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks) which lints the staged files and doesn't let you commit if there is a linting error.
1414

1515
To disable this, go to the `.husky/pre-commit` file and comment out `yarn lint-staged --verbose`
1616

docs/quick-start/environment.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The command also will create a file called `packages/nextjs/contracts/deployedCo
3535

3636
:::tip
3737

38-
Note that `yarn deploy` does not reset the the generated `deployedContracts.ts` file, meaning that any changes that you made to the contract name or any deletion will not be taken into account, as it will only make the new deployment on top of the existing API. To completely start from a fresh state of deployment, you can run (do run with caution):
38+
Note that `yarn deploy` does not reset the generated `deployedContracts.ts` file, meaning that any changes that you made to the contract name or any deletion will not be taken into account, as it will only make the new deployment on top of the existing API. To completely start from a fresh state of deployment, you can run (do run with caution):
3939

4040
```
4141
yarn deploy:reset

docs/recipes/ReadUintFromContract.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
sidebar_position: 3
33
title: Read a uint from a contract
4-
description: Learn how to read from contract functions which accepts arguments / no arguments and display them on UI.
4+
description: Learn how to read from contract functions which accept arguments / no arguments and display them on UI.
55
---
66

77
# Read a `uint` from a contract

docs/recipes/WriteToContractWriteAsyncButton.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Learn how to create a button that executes the writeContractAsync f
66

77
# Write to a Contract with `writeContractAsync` button
88

9-
his recipe demonstrates how to create a button for contract interaction using the "useTransactor" and "useWriteContract" hooks from the "starknet-react" library. The interaction includes the capability to provide feedback on the transaction status when using starknet-react `useContractWrite`.
9+
This recipe demonstrates how to create a button for contract interaction using the "useTransactor" and "useWriteContract" hooks from the "starknet-react" library. The interaction includes the capability to provide feedback on the transaction status when using starknet-react `useContractWrite`.
1010

1111
<details open>
1212
<summary>Here is the full code, which we will be implementing in the guide below:</summary>

0 commit comments

Comments
 (0)