Skip to content

Commit dbeda4e

Browse files
authored
Merge pull request #1339 from comfsrt/main
fix spelling errors in docs files
2 parents 26388cf + 5199eae commit dbeda4e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

components/Search/docsearch.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export function DocSearch({
8383
(e.metaKey /* for Mac */ || /* for non-Mac */ e.ctrlKey))
8484
) {
8585
e.preventDefault();
86-
// prevent to scroll to top
86+
// prevent scrolling to the top
8787
input.current.focus({ preventScroll: true });
8888
} else if (e.key === "Escape") {
8989
setShow(false);

content/OpProposerDescriptionShort.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
`op-proposer` is the service that submits the output roots to the L1. This is to enable trustless execution of L2-to-L1 messaging and creates the view of the L2 state from the L1's perspective.
1+
`op-proposer` is the service that submits the output roots to the L1. This is to enable trustless execution of L2-to-L1 messaging and create the view of the L2 state from the L1's perspective.

notes/kapa-ai-assistant.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ Currently the website has the modal enabled by a custom button component located
1010

1111
## Enabling/disabling the feature
1212

13-
The kapa AI assistant con be toggled on and off on the website by toggling the **`enable_docs_ai_widget`** feature flag.
13+
The kapa AI assistant can be toggled on and off on the website by toggling the **`enable_docs_ai_widget`** feature flag.

pages/app-developers/transactions/statuses.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Understanding these statuses can help you troubleshoot issues, build safer appli
1111

1212
## Pending
1313

14-
**Instant after sending to Sequencer**
14+
**Instant after sending to the Sequencer**
1515

1616
A transaction is considered "pending" when it has been sent to the Sequencer but has not yet been included in a block.
1717
This is the first status a transaction will have after being sent to the Sequencer.

pages/app-developers/tutorials/transactions/sdk-trace-txns.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Since viem is a [Node.js](https://nodejs.org/en/) library, you'll need to create
4444

4545
## Add RPC URLs to your environment
4646

47-
You'll be using the `getTransactionReceipt` function from the viem library during this tutorial. This function use event queries to retrieve the receipt for a deposit or withdrawal.
47+
You'll be using the `getTransactionReceipt` function from the viem library during this tutorial. This function uses event queries to retrieve the receipt for a deposit or withdrawal.
4848
Since this function uses large event queries, you'll need to use an RPC provider like [Alchemy](https://alchemy.com) that supports indexed event queries.
4949
Grab an L1 and L2 RPC URL for Sepolia and OP Sepolia, respectively.
5050

0 commit comments

Comments
 (0)