Fix typos and grammatical errors in app-developers/tutorials documentation #1842
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fix typos and grammatical errors in app-developers/tutorials documentation
Summary
This PR fixes 9 grammatical errors across 8 tutorial files in the
app-developers/tutorialsdirectory. All changes are purely textual improvements that fix grammar, spelling, and punctuation while preserving the original meaning, technical terms, code snippets, and markdown structure.Detailed Report
<fixed_files>
app-developers/tutorials/bridging/cross-dom-bridge-erc20.mdx console.log(`L2 Balance after withdrawal: ${formatEther(l2Balance)}`); console.log(`L2 Balance after withdrawal initiation: ${formatEther(l2Balance)}`); Added "initiation" for accuracy - this code checks balance after initiating withdrawal, not after completion (which takes 7 days) app-developers/tutorials/bridging/cross-dom-solidity.mdx Check out the Contract Addresses page to see the addresses of the CrossDomainMessenger contracts on whichever network you'll be using. Check out the Contract Addresses page to see the addresses of the CrossDomainMessenger contracts on whatever network you'll be using. Changed "whichever" to "whatever" for grammatically correct usage with "network" app-developers/tutorials/bridging/deposit-transactions.mdx We'll be using the first pre-funded account to send this deposit with 1 ether We'll be using the first pre-funded account to send this deposit of 1 ether Changed preposition from "with" to "of" for correct grammatical usage app-developers/tutorials/interoperability/manual-relay.mdx The code above will calculate the correct access list even if youre using a different interop cluster The code above will calculate the correct access list even if you're using a different interop cluster Fixed contraction - added apostrophe to "you're" app-developers/tutorials/tokens/deploy-superchain-erc20.mdx <Expandable>app-developers/tutorials/bridging/bridge-crosschain-eth.mdx
A TypeScript application to transfer ETH chains
A TypeScript application to transfer ETH between chains
Added missing preposition "between" to complete the phrase correctly
title="About this tutorial"
What you'll learn
<Expandable title="About this tutorial">
What you'll learn
app-developers/tutorials/transactions/sdk-estimate-costs.mdx This tutorial explains how estimate transaction costs on OP Sepolia. This tutorial explains how to estimate transaction costs on OP Sepolia. Added missing "to" before infinitive verb "estimate" Viem makes it easy to create unsigned transactions so you can estimate the cost of a transaction before you a user to sign it. Viem makes it easy to create unsigned transactions so you can estimate the cost of a transaction before asking a user to sign it. Fixed incomplete phrase - changed "before you a user" to "before asking a user" app-developers/tutorials/transactions/send-tx-from-eth.mdx This will bring up a Node REPL prompt that allows you to run javascript code. This will bring up a Node REPL prompt that allows you to run JavaScript code. Capitalized "JavaScript" as it is a proper noun (programming language name)Fixed malformed Expandable component tag - moved title attribute to opening tag
Review & Testing Checklist
cross-dom-bridge-erc20.mdx:530("after withdrawal" → "after withdrawal initiation") accurately describes the code execution state at that point in the tutorial<Expandable title="About this tutorial">component renders correctly indeploy-superchain-erc20.mdxpnpm devlocally to verify all documentation renders without errorsNotes