From 915f9d320dd2da83fb8ec59f8217046da8fea36e Mon Sep 17 00:00:00 2001 From: davidemazzocchi Date: Fri, 27 Feb 2026 10:49:54 +0100 Subject: [PATCH] doc: update documentation of catalog.list_by_subclass method --- 01.workspace/heave/src/imp/catalog_list_by_subclass.rs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/01.workspace/heave/src/imp/catalog_list_by_subclass.rs b/01.workspace/heave/src/imp/catalog_list_by_subclass.rs index ca83e8f..9f4da6f 100644 --- a/01.workspace/heave/src/imp/catalog_list_by_subclass.rs +++ b/01.workspace/heave/src/imp/catalog_list_by_subclass.rs @@ -13,12 +13,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 - /// and subclass 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 ///