Skip to content

Commit c639319

Browse files
authored
docs: fix duplicate "the" typos in spammer README and base fee ADR (#73)
## Summary Two small duplicate-word typos in documentation: 1. **`crates/spammer/README.md:394`** — `the the transaction` → `the transaction` 2. **`docs/adr/0004-base-fee-validation.md:18`** — `the the header` → `in the header` For the ADR typo, "in" reads naturally in context: > "Arc includes the next block base fee **in the header**, computed at the end of the parent's block execution" Happy to change to a different phrasing if a different reading was intended (e.g., simply removing the extra "the" → "...base fee the header...", or "...to the header..."). ## Change ```diff diff --git a/crates/spammer/README.md b/crates/spammer/README.md @@ -394 +394 @@ -2. **Finalization**: the block in which the the transaction was included... +2. **Finalization**: the block in which the transaction was included... diff --git a/docs/adr/0004-base-fee-validation.md b/docs/adr/0004-base-fee-validation.md @@ -18 +18 @@ -...Arc includes the next block base fee the the header, computed... +...Arc includes the next block base fee in the header, computed... ``` ## Verification After the change, `grep -rn "the the" --include="*.md" .` returns no matches in the repo. ## Notes This is a documentation-only change (2 files, +2/-2).
2 parents cf51a19 + 56de05a commit c639319

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

crates/spammer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ a finalized block.
391391
The latency tracker records the time between:
392392

393393
1. **Submission**: when the spammer sends the transaction to the RPC endpoint of a node
394-
2. **Finalization**: the block in which the the transaction was included is known to be finalized, via a RPC subscription
394+
2. **Finalization**: the block in which the transaction was included is known to be finalized, via a RPC subscription
395395
observes.
396396

397397
This measures end-to-end transaction latency as experienced by a client.

docs/adr/0004-base-fee-validation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ On Arc, the base fee calculation combines: 1) an EIP-1559-style algorithm, 2) s
1515

1616
The value of 1) is that it is familiar and well-understood. The value of 2) is to enable rapid adjusting of fee parameters and strictly enforcing block gas limits through governance. The value of 3) is to dampen fee increases against sudden shocks in usage with Arc's fast blocktimes.
1717

18-
The combination of these makes it challenging for integrators to precisely understand the next block base fee as the calculation is more involved. To address this, Arc includes the next block base fee the the header, computed at the end of the parent's block execution, since it is fully known at that point.
18+
The combination of these makes it challenging for integrators to precisely understand the next block base fee as the calculation is more involved. To address this, Arc includes the next block base fee in the header, computed at the end of the parent's block execution, since it is fully known at that point.
1919

2020
Currently, the implementation has several gaps in validation. This ADR, similar to ADR-003, seeks to document solutions to these gaps.
2121

0 commit comments

Comments
 (0)