Skip to content

Commit acd8e2f

Browse files
authored
Merge pull request #12032 from rex4539/typos
fix: fix typos
2 parents 1004745 + e0541fd commit acd8e2f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/code-conventions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ For the props type signature use the naming convention `<ComponentName>Props` to
6161

6262
**Do not use `React.FC`** and instead annotate the props object directly. `React.FC` implies the `children` prop, but this is not always desired when there is a component that should not accept this prop. `React.FC` also does not allow for use of Generic types, or use of Generic type when doing type guarding like function overloading. It is also not generally recommended to use and [was removed from the create-react-app template](https://github.com/facebook/create-react-app/pull/8177).
6363

64-
A positive side-effect to directly annoting the props object is for IDE intellisense where you can view the props when hovering over the component name to see it's signature.
64+
A positive side-effect to directly annotating the props object is for IDE intellisense where you can view the props when hovering over the component name to see it's signature.
6565

6666
i.e. `const Component: ({ label, title, ...props }: ComponentProps) => React.JSX.Element`
6767

public/content/developers/docs/nodes-and-clients/nodes-as-a-service/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Here is a list of some of the most popular Ethereum node providers, feel free to
110110
- Analytics
111111
- [**BlockPI**](https://blockpi.io/)
112112
- [Docs](https://docs.blockpi.io/)
113-
- Fetures
113+
- Features
114114
- Robust & distributed node structure
115115
- Up to 40 HTTPS and WSS endpoints
116116
- Free signup package and monthly package

src/components/CardList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const Card = ({
5252
caption,
5353
link,
5454
image,
55-
imageWidth = 20, // Set 20px as default image width, can be overrided if needed
55+
imageWidth = 20, // Set 20px as default image width, can be overridden if needed
5656
alt,
5757
...props
5858
}: CardProps) => {

src/components/Simulator/screens/SendReceive/SendSummary.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export const SendSummary = ({
7777
<Text fontWeight="bold">est. about 12 seconds</Text>
7878
</Box>
7979
<Box>
80-
<Text>Nework fees</Text>
80+
<Text>Network fees</Text>
8181
<Text m={0} fontWeight="bold">
8282
{Intl.NumberFormat("en", {
8383
maximumFractionDigits: getMaxFractionDigitsUsd(usdFee),

src/data/developer-docs-links.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is the source file for developer documentation nav links
22
# Each `id` value should map to an equivalent key in src/intl/${lang}.json file
33

4-
# To display item as a collapsable directory vs. a link
4+
# To display item as a collapsible directory vs. a link
55
# use the `path` property (of the directory) vs. the `to` property
66
- id: docs-nav-readme
77
to: /developers/docs

0 commit comments

Comments
 (0)