From 33252739d9b2f3b01611a419bc285bf6b80c8e15 Mon Sep 17 00:00:00 2001 From: RunasSudo Date: Sun, 25 May 2025 01:20:37 +1000 Subject: [PATCH] Update documentation --- src/reporting/types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/reporting/types.rs b/src/reporting/types.rs index 27e89f2..1cbfb95 100644 --- a/src/reporting/types.rs +++ b/src/reporting/types.rs @@ -194,6 +194,7 @@ pub trait GenericReportingProduct: Debug + ReportingProduct {} /// Map from [ReportingProductId] to [ReportingProduct] #[derive(Clone, Debug)] pub struct ReportingProducts { + // This needs to be an IndexMap not HashMap, because sometimes we query which product is more up to date map: IndexMap>, }