Skip to content

Commit 2e227c0

Browse files
authored
Merge pull request #11879 from ATREAY/docs
Fixed instances of duplicated words
2 parents a98fc23 + 6ac2268 commit 2e227c0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

public/content/community/research/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The execution layer is concerned with executing transactions, running the [Ether
6969
- [Database optimizations](https://github.com/ledgerwatch/erigon/blob/devel/docs/programmers_guide/db_faq.md)
7070
- [State expiry](https://notes.ethereum.org/@vbuterin/state_expiry_eip)
7171
- [Paths to state expiry](https://hackmd.io/@vbuterin/state_expiry_paths)
72-
- [Verkel and state expiry proposal](https://notes.ethereum.org/@vbuterin/verkle_and_state_expiry_proposal)
72+
- [Verkle and state expiry proposal](https://notes.ethereum.org/@vbuterin/verkle_and_state_expiry_proposal)
7373
- [History management](https://eips.ethereum.org/EIPS/eip-4444)
7474
- [Verkle Trees](https://vitalik.ca/general/2021/06/18/verkle.html)
7575
- [Data availability sampling](https://github.com/ethereum/research/wiki/A-note-on-data-availability-and-erasure-coding)
@@ -198,7 +198,7 @@ Ethereum wallets can be browser extensions, desktop and mobile apps or smart con
198198

199199
## Community, education and outreach {#community-education-and-outreach}
200200

201-
Onboarding new users onto Ethereum requires new educational resources and approaches to outreach. This might include blog posts and articles, books, podcasts, memes, teaching resources events and anything else that builds communities, welcomes new starters and educates people about Ethereum.
201+
Onboarding new users onto Ethereum requires new educational resources and approaches to outreach. This might include blog posts and articles, books, podcasts, memes, teaching resources, events and anything else that builds communities, welcomes new starters and educates people about Ethereum.
202202

203203
### UX/UI {#uxui}
204204

public/content/developers/docs/smart-contracts/security/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ You can also use a [pull payments](https://docs.openzeppelin.com/contracts/4.x/a
357357

358358
An integer overflow occurs when the results of an arithmetic operation falls outside the acceptable range of values, causing it to "roll over" to the lowest representable value. For example, a `uint8` can only store values up to 2^8-1=255. Arithmetic operations that result in values higher than `255` will overflow and reset `uint` to `0`, similar to how the odometer on a car resets to 0 once it reaches the maximum mileage (999999).
359359

360-
Integer underflows happen for similar reasons: the the results of an arithmetic operation falls below the acceptable range. Say you tried decrementing `0` in a `uint8`, the result would simply roll over to the maximum representable value (`255`).
360+
Integer underflows happen for similar reasons: the results of an arithmetic operation falls below the acceptable range. Say you tried decrementing `0` in a `uint8`, the result would simply roll over to the maximum representable value (`255`).
361361

362362
Both integer overflows and underflows can lead to unexpected changes to a contract’s state variables and result in unplanned execution. Below is an example showing how an attacker can exploit arithmetic overflow in a smart contract to perform an invalid operation:
363363

public/content/staking/withdrawals/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ eventName="read more">
196196

197197
Validator operators are recommended to visit the <a href="https://launchpad.ethereum.org/withdrawals/">Staking Launchpad Withdrawals</a> page where you'll find more details about how to prepare your validator for withdrawals, timing of events, and more details about how withdrawals function.
198198

199-
To try out your setup on a testnet first, visit the the <a href="https://goerli.launchpad.ethereum.org">Goerli Testnet Staking Launchpad</a> to get started.
199+
To try out your setup on a testnet first, visit the <a href="https://goerli.launchpad.ethereum.org">Goerli Testnet Staking Launchpad</a> to get started.
200200

201201
</ExpandableCard>
202202

0 commit comments

Comments
 (0)