Fix broken in-page link causing 404 in Motivation section#468
Conversation
ℹ️ How to fix this error:
ℹ️ Checking for typos locally
for f in **/*.md ; do echo $f ; aspell --lang=en_US --mode=markdown --home-dir=. --personal=wordlist.txt --ignore-case=true --camel-case --add-sgml-skip nospellcheck list < $f | sort | uniq -c ; done |
0392669
into
eth-protocol-fellows:main
|
For clarity: this PR initially changed only a single Markdown file to fix a broken in-page link causing a 404. The CI failure was triggered by the global spellcheck job. To address the initial failure, I edited wordlist.txt to fix an invalid entry, which caused the spellcheck to re-run against the entire repository. This surfaced a number of pre-existing typos in unrelated Markdown files that were not modified in this PR. It looks like the spellcheck job runs against all Markdown files in the repository, and is surfacing pre-existing typos in unrelated documents. For this PR, would you prefer that spellcheck be scoped to changed files only, or should these be handled in a separate cleanup PR? |
Wiki PR Checklist
Thank you for contributing to the Protocol Wiki! Before you open a PR, make sure to read information for contributors and take a look at following checklist:
Describe your changes
This PR fixes a broken in-page Markdown link in
docs/wiki/research/Preconfirmations/BasedSequencingPreconfs.md.The "Motivation" section incorrectly linked to a relative path instead of a local anchor, causing Docsify to route to a non-existent page and return a 404. The link has been corrected to use the proper heading anchor.
If you are touching an existing piece of content, ask the original creator for review
This change is a minimal mechanical fix (one-line link correction) and does not alter content meaning or structure.
If you need feedback for your content from wider community, share the PR in our Discord
Not applicable, this PR fixes a technical documentation bug and does not introduce new content.
Review changes to ensure there are no typos, see instructions below
Closes #467