From 95ff3b56aefd62cdb55054c95d28b5bf3425dbcf Mon Sep 17 00:00:00 2001 From: MaximilianSoerenPollak Date: Thu, 15 Jan 2026 12:16:04 +0100 Subject: [PATCH] Add source code link --- src/containers/fixed_capacity/vec.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/containers/fixed_capacity/vec.rs b/src/containers/fixed_capacity/vec.rs index d77a9d00..223281de 100644 --- a/src/containers/fixed_capacity/vec.rs +++ b/src/containers/fixed_capacity/vec.rs @@ -25,6 +25,7 @@ pub struct FixedCapacityVec { inner: GenericVec>, } +/// # req-Id: comp_req__containers_rust__fixed_vector impl FixedCapacityVec { /// Creates an empty vector and allocates memory for up to `capacity` elements, where `capacity <= u32::MAX`. ///