Skip to content

Commit 17e8a2e

Browse files
authored
Fix typographical errors (#1820)
* fix typos * fix typo * fix typo * fix typos
1 parent e4ee409 commit 17e8a2e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docusaurus.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,13 +139,13 @@ const config = {
139139
breadcrumbs: false,
140140
sidebarItemsGenerator: async function ({ defaultSidebarItemsGenerator, ...args }) {
141141
const sidebarItems = await defaultSidebarItemsGenerator(args);
142-
const dymanicItems = await fetchAndGenerateDynamicSidebarItems(
142+
const dynamicItems = await fetchAndGenerateDynamicSidebarItems(
143143
MM_RPC_URL,
144144
MM_REF_PATH,
145145
NETWORK_NAMES.metamask
146146
)
147147
if (args.item.dirName === "reference/json-rpc-methods") {
148-
return [...sidebarItems, ...dymanicItems]
148+
return [...sidebarItems, ...dynamicItems]
149149
}
150150
return sidebarItems;
151151
}

services/how-to/json-web-token-jwt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ To generate a timestamp for testing, use an [online timestamp converter tool](ht
134134
:::
135135

136136
</TabItem>
137-
<TabItem value="Programatically">
137+
<TabItem value="Programmatically">
138138

139139
Developers typically create the JWT token from their keys programmatically. To learn more, follow the tutorial demonstrating how to [create and apply a JWT with Node.js](../tutorials/ethereum/authenticate-with-jwt.md).
140140

services/tutorials/ethereum/track-erc-20-token-transfers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ if (transaction.from == "<SENDER_ADDRESS>") {
275275
You can also track a specific recipient address receiving any tokens by tracking the `transaction.to` value:
276276

277277
```javascript
278-
if (transaction.to == "<RECIEVING_ADDRESS>") {
278+
if (transaction.to == "<RECEIVING_ADDRESS>") {
279279
console.log("Specified address received an ERC-20 token!")
280280
}
281281
```

src/components/Faucet/Alerts.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export const AlertCooldown = () => (
120120

121121
export const AlertSuccess = ({ url }: { url: string }) => (
122122
<div>
123-
<AlertTitle>Transaction successfull!</AlertTitle>
123+
<AlertTitle>Transaction successful!</AlertTitle>
124124
<AlertText>
125125
<span>
126126
Your transaction has been sent to the Ethereum/Sepolia network. You

0 commit comments

Comments
 (0)