From 287b196569fc768b1b41271d766f410a63309684 Mon Sep 17 00:00:00 2001 From: Sergio Chouhy Date: Thu, 26 Mar 2026 18:16:18 -0300 Subject: [PATCH] remove redundant docstring --- nssa/core/src/program.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/nssa/core/src/program.rs b/nssa/core/src/program.rs index 5ef4058b..b9fa5de2 100644 --- a/nssa/core/src/program.rs +++ b/nssa/core/src/program.rs @@ -268,8 +268,6 @@ pub struct ProgramOutput { /// The list of chained calls to other programs. pub chained_calls: Vec, /// The window where the program output is valid. - /// Valid for block IDs in the range [from, to), where `from` is included and `to` is excluded. - /// `None` means unbounded on that side. pub validity_window: ValidityWindow, }