From dcfa4dee4b1163628152398f7c0ffc21bcc9f368 Mon Sep 17 00:00:00 2001 From: davidemazzocchi Date: Fri, 27 Feb 2026 10:45:52 +0100 Subject: [PATCH] doc: update documentation of catalog.list method --- 01.workspace/heave/src/imp/catalog_list.rs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/01.workspace/heave/src/imp/catalog_list.rs b/01.workspace/heave/src/imp/catalog_list.rs index 9004b4d..0f1c7b8 100644 --- a/01.workspace/heave/src/imp/catalog_list.rs +++ b/01.workspace/heave/src/imp/catalog_list.rs @@ -9,12 +9,9 @@ impl Catalog { /// /// # Returns /// - /// A `Result` containing a `Vec` of `Result>`. Each inner `Result` - /// represents the outcome of converting an entity to type `T`. - /// - /// - `Ok(Vec)`: A vector of successfully converted entities. - /// - `Ok(Vec)`: If an entity of the correct class - /// could not be converted to type `T`. + /// A `Result` containing a `Vec` of entities that were successfully + /// converted to type `T`. Entities that fail conversion are silently + /// skipped and not included in the returned vector. /// /// # Errors ///