Summary
docs/GPU_FINGERPRINTING.md has a broken relative link in its Reference section:
[RIP-0308: Proof of Physical AI](rips/docs/RIP-0308-proof-of-physical-ai.md)
Because the source file lives under docs/, GitHub resolves that link as:
docs/rips/docs/RIP-0308-proof-of-physical-ai.md
That path does not exist. The target file does exist at the repo root under:
rips/docs/RIP-0308-proof-of-physical-ai.md
Reproduction
From a fresh checkout of Scottcjn/Rustchain:
Test-Path docs/rips/docs/RIP-0308-proof-of-physical-ai.md
# False
Test-Path rips/docs/RIP-0308-proof-of-physical-ai.md
# True
The broken reference is in docs/GPU_FINGERPRINTING.md under ## Reference.
Expected Fix
Update the link to traverse out of docs/ first:
[RIP-0308: Proof of Physical AI](../rips/docs/RIP-0308-proof-of-physical-ai.md)
Impact
This is a small documentation bug, but it affects a high-signal technical doc. New readers trying to understand the GPU proof model hit a 404 at the exact point where they need the RIP reference.
Summary
docs/GPU_FINGERPRINTING.mdhas a broken relative link in its Reference section:Because the source file lives under
docs/, GitHub resolves that link as:That path does not exist. The target file does exist at the repo root under:
Reproduction
From a fresh checkout of
Scottcjn/Rustchain:The broken reference is in
docs/GPU_FINGERPRINTING.mdunder## Reference.Expected Fix
Update the link to traverse out of
docs/first:Impact
This is a small documentation bug, but it affects a high-signal technical doc. New readers trying to understand the GPU proof model hit a 404 at the exact point where they need the RIP reference.