From 47d9257d6f8a8e15bf4b250f25a553e952ab321e 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 6fd986df..334a2962 100644 --- a/nssa/core/src/program.rs +++ b/nssa/core/src/program.rs @@ -180,8 +180,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`). #[must_use] pub fn is_valid_for(&self, block_id: BlockId, timestamp_ms: Timestamp) -> bool { self.from.is_none_or(|start| block_id >= start)