Skip to content

Commit 053648b

Browse files
authored
docs: minor improvement for docs (#130)
1 parent 4105524 commit 053648b

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

lottery/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This project is apart of the Hardhat FreeCodeCamp video.
2626
- You'll know you did it right if you can run `git --version` and you see a response like `git version x.x.x`
2727
- [Nodejs](https://nodejs.org/en/)
2828
- You'll know you've installed nodejs right if you can run:
29-
- `node --version` and get an ouput like: `vx.x.x`
29+
- `node --version` and get an output like: `vx.x.x`
3030
- [Yarn](https://yarnpkg.com/getting-started/install) instead of `npm`
3131
- You'll know you've installed yarn right if you can run:
3232
- `yarn --version` and get an output like: `x.x.x`
@@ -132,7 +132,7 @@ yarn hardhat verify --constructor-args arguments.ts DEPLOYED_CONTRACT_ADDRESS
132132
```
133133

134134
### Optional Charity Raffle
135-
This repo also includes the option to deploy a raffle where players enter by donating to their choice of one of three charities. On deployment, the charity raffle contract is funded with the jackpot for the player winner. The Chainlink keepers end the charity raffle and the VRF picks a player winner. Once the lottery ends, the contract funder has the option to match the donation value of the charity that recieved the highest number of player donations. If there is a tie between charities with the highest donations, the VRF and keepers will settle the tie and declare the winner.
135+
This repo also includes the option to deploy a raffle where players enter by donating to their choice of one of three charities. On deployment, the charity raffle contract is funded with the jackpot for the player winner. The Chainlink keepers end the charity raffle and the VRF picks a player winner. Once the lottery ends, the contract funder has the option to match the donation value of the charity that received the highest number of player donations. If there is a tie between charities with the highest donations, the VRF and keepers will settle the tie and declare the winner.
136136

137137
# Linting
138138

lottery/test/unit/CharityRaffle.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ import { CharityRaffle, VRFCoordinatorV2Mock } from "../../typechain-types"
9797
)
9898
expect(await charityRaffle.getDonations(charity1.address)).to.equal("1")
9999
})
100-
it("donates enterance fee to chosen charity", async () => {
100+
it("donates entrance fee to chosen charity", async () => {
101101
// ideally would test one at a time, but tested once above
102102
const charity1StartingBalance: BigNumber = await charity1.getBalance()
103103
const charity2StartingBalance: BigNumber = await charity2.getBalance()

stablecoin-project/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ forge test
5353
### Run Scripts
5454

5555
```shell
56-
# In a seperate window
56+
# In a separate window
5757
anvil
5858
# Run the interaction script on local network
5959
forge script script/StableCoinInteraction.s.sol --rpc-url http://127.0.0.1:8545 --broadcast

ultimate-nft-repo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ We go through creating 3 different kinds of NFTs.
2727
- You'll know you did it right if you can run `git --version` and you see a response like `git version x.x.x`
2828
- [Nodejs](https://nodejs.org/en/)
2929
- You'll know you've installed nodejs right if you can run:
30-
- `node --version` and get an ouput like: `vx.x.x`
30+
- `node --version` and get an output like: `vx.x.x`
3131
- [Yarn](https://yarnpkg.com/getting-started/install) instead of `npm`
3232
- You'll know you've installed yarn right if you can run:
3333
- `yarn --version` and get an output like: `x.x.x`

0 commit comments

Comments
 (0)