Skip to content

Commit 82dec2b

Browse files
authored
Merge pull request #14548 from rex4539/typos
fix: fix typos
2 parents ea8422a + 24a55d4 commit 82dec2b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

public/content/developers/docs/data-availability/blockchain-data-storage-strategies/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Calldata refers to the bytes sent as part of the transaction. It is stored as pa
6363

6464
This is the cheapest method to permanently put data in the blockchain. The cost per byte is either 4 execution gas (if the byte is zero) or 16 gas (any other value). If the data is compressed, which is standard practice, then every byte value is equally likely, so the average cost is approximately 15.95 gas per byte.
6565

66-
At writing the prices are 12 gwei/gas and 2300 $/ETH, which means the cost is appoximately 45 cents per kilobyte. Because this was the cheapest method prior to EIP-4844, this is the method rollups used to store transaction information, which need to be available for [fault challenges](https://docs.optimism.io/stack/protocol/overview#fault-proofs), but do not need to be accessible directly onchain.
66+
At writing the prices are 12 gwei/gas and 2300 $/ETH, which means the cost is approximately 45 cents per kilobyte. Because this was the cheapest method prior to EIP-4844, this is the method rollups used to store transaction information, which need to be available for [fault challenges](https://docs.optimism.io/stack/protocol/overview#fault-proofs), but do not need to be accessible directly onchain.
6767

6868
Here are the addresses to see the transactions posted by some famous rollups.
6969

public/content/developers/docs/design-and-ux/heuristics-for-web3/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ People care deeply about their data. Safety is often a primary concern for users
5353
**Example:**
5454
Include your audits in the footer, at a prominent size.
5555

56-
![Audits refernced in the website footer](./Image2.png)
56+
![Audits referenced in the website footer](./Image2.png)
5757

5858
### 3. The most important info is obvious {#the-most-important-info-is-obvious}
5959

src/components/Heading/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const Heading = forwardRef<HeadingProps, "h2">((props, ref) => {
3737
} else {
3838
// If a `size` value is not passed to this wrapper, set a default based on the element
3939
// provided to the `as` prop
40-
// Only heading elemnts will set the defaults (Default heading is `h2`)
40+
// Only heading elements will set the defaults (Default heading is `h2`)
4141
const headingDefaultKeys = Object.keys(HEADING_SIZE_DEFAULTS)
4242

4343
if (typeof as === "string" && headingDefaultKeys.includes(as)) {

src/components/icons/icon-base.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { cn } from "@/lib/utils/cn"
66
* Wrapper to generate an icon component, using the react-icons `IconBase` component.
77
* Requires setting `displayName` and `children` props.
88
*
9-
* **NOTE:** Setting SVG attributes in the `options` object become default values, which are overriden when passing props on render.
9+
* **NOTE:** Setting SVG attributes in the `options` object become default values, which are overridden when passing props on render.
1010
*/
1111
export const createIconBase = (
1212
options: IconBaseProps & {

src/styles/global.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
--font-inter: Inter, sans-serif;
1414
--font-mono: "IBM Plex Mono", Courier, monospace;
1515

16-
/* Misc sematics: light mode */
16+
/* Misc semantics: light mode */
1717
--tooltip-shadow: rgba(0, 0, 0, 0.24);
1818
--switch-background: var(--gray-300);
1919
--hub-hero-content: rgba(255, 255, 255, 0.8);
@@ -46,7 +46,7 @@
4646
}
4747

4848
[data-theme="dark"] {
49-
/* Misc sematics: dark mode */
49+
/* Misc semantics: dark mode */
5050
--tooltip-shadow: rgba(255, 255, 255, 0.24);
5151
--switch-background: rgba(255, 255, 255, 0.24);
5252
--hub-hero-content: rgba(34, 34, 34, 0.8);

0 commit comments

Comments
 (0)