From f8296fa03bcb0b9a145642e6e3c030993deca9ef Mon Sep 17 00:00:00 2001 From: adlee-was-taken Date: Fri, 8 May 2026 21:53:20 -0400 Subject: [PATCH] docs(core): drop intra-doc link to private RECOVERY_PRODUCTION_PARAMS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Phase 3 code-quality review caught that the [`RECOVERY_PRODUCTION_PARAMS`] form in the module header introduced a new rustdoc warning (the const is module-private, so the link only resolves under --document-private-items). Drop the brackets so it renders as plain backticks — same visual, no broken link, no need to widen visibility. Refs: docs/superpowers/specs/2026-05-04-security-polish-design.md (Phase 3) Co-Authored-By: Claude Opus 4.7 --- crates/relicario-core/src/recovery_qr.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/relicario-core/src/recovery_qr.rs b/crates/relicario-core/src/recovery_qr.rs index 34fe3bb..e0cadde 100644 --- a/crates/relicario-core/src/recovery_qr.rs +++ b/crates/relicario-core/src/recovery_qr.rs @@ -39,7 +39,7 @@ //! ## Parameter-pinning rationale //! //! The Argon2id parameters used here are NOT [`crate::crypto::KdfParams::default`]. -//! They are pinned in [`RECOVERY_PRODUCTION_PARAMS`] at the value +//! They are pinned in `RECOVERY_PRODUCTION_PARAMS` at the value //! `KdfParams { argon2_m: 65536, argon2_t: 3, argon2_p: 4 }` — the same values //! the default happens to have *today*, but deliberately re-stated rather than //! referenced. This is because `KdfParams::default()` may evolve as we re-tune