Commit c639319
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 files changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
391 | 391 | | |
392 | 392 | | |
393 | 393 | | |
394 | | - | |
| 394 | + | |
395 | 395 | | |
396 | 396 | | |
397 | 397 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
18 | | - | |
| 18 | + | |
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
| |||
0 commit comments