From 6d690a8d25fdb9185cc998ec69b76603afc71ca2 Mon Sep 17 00:00:00 2001 From: Moudy Date: Tue, 24 Mar 2026 16:35:41 +0100 Subject: [PATCH] fix: add backticks to doc comment for clippy doc_markdown --- nssa/core/src/program.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nssa/core/src/program.rs b/nssa/core/src/program.rs index 6378cc7d..b1f60f25 100644 --- a/nssa/core/src/program.rs +++ b/nssa/core/src/program.rs @@ -199,8 +199,8 @@ impl ValidityWindow { } } - /// Valid for block IDs in the range [from, to) and timestamps in [from_timestamp, - /// to_timestamp). + /// Valid for block IDs in the range [from, to) and timestamps in [`from_timestamp`, + /// `to_timestamp`). /// A `None` bound on either side is treated as unbounded in that direction. #[must_use] pub fn is_valid_for(&self, block_id: BlockId, timestamp_ms: Timestamp) -> bool {