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