Skip to content

Commit

Permalink
Fix docs typos
Browse files Browse the repository at this point in the history
* Update index.md

* Update README.md

* Update upgradeable-proxies.md
  • Loading branch information
donatik27 authored Nov 21, 2024
1 parent 618c543 commit 97365ef
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ Execution of `getStaticPaths` and `getStaticProps` is handled by NextJS on a bui

## Styling

We utilize [Linaria](https://github.com/callstack/linaria) for styling components. It has the "Styled Components" syntax but generates css without runtime with works fine with SSG sites.
We utilize [Linaria](https://github.com/callstack/linaria) for styling components. It has the "Styled Components" syntax but generates css without runtime which works fine with SSG sites.

## Theming

Expand All @@ -200,7 +200,7 @@ Landing pages don't support themes.

## Creating new landings

Landing pages contains special "blocks" see src/components/landingBlocks. To create a new landing page start from copying `/pages/index.tsx` and `src/content/home.ts`. You can create another page by reordering existing blocks and passing another content to them. If necessary create new landing blocks.
Landing pages contain special "blocks" see src/components/landingBlocks. To create a new landing page start from copying `/pages/index.tsx` and `src/content/home.ts`. You can create another page by reordering existing blocks and passing another content to them. If necessary create new landing blocks.

## CI/CD

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/hardhat-runner/docs/config/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ The `solidity` config is an optional field that can be one of the following:
You can customize the different paths that Hardhat uses by providing an object to the `paths` field with the following keys:

- `root`: The root of the Hardhat project. This path is resolved from `hardhat.config.js`'s directory. Default value: the directory containing the config file.
- `sources`: The directory where your contract are stored. This path is resolved from the project's root. Default value: `'./contracts'`.
- `sources`: The directory where your contracts are stored. This path is resolved from the project's root. Default value: `'./contracts'`.
- `tests`: The directory where your tests are located. This path is resolved from the project's root. Default value: `'./test'`.

- `cache`: The directory used by Hardhat to cache its internal stuff. This path is resolved from the project's root. Default value: `'./cache'`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ contract DemoV2 {

In addition to updating the version string, this contract also adds a `name` state variable and a `setName` function that allows us to set the value of `name`. We'll use this function later when we upgrade our proxy.

Finally, we'll create a file called `Proxies.sol` to import our proxy contracts. This file will look a little different than the others:
Finally, we'll create a file called `Proxies.sol` to import our proxy contracts. This file will look a little different from the others:

```solidity
// SPDX-License-Identifier: UNLICENSED
Expand Down

0 comments on commit 97365ef

Please sign in to comment.