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 ///