style(data_structures): add line break (#7882)

This commit is contained in:
overlookmotel 2024-12-14 13:16:49 +00:00
parent 81eedb10c0
commit fb897f6c3a

View file

@ -45,6 +45,7 @@ impl<T> SparseStack<T> {
///
/// [`MAX_TOTAL_CAPACITY`]: Self::MAX_TOTAL_CAPACITY
pub const MAX_FILLED_CAPACITY: usize = Stack::<T>::MAX_CAPACITY;
/// Maximum capacity for entries (either `Some` or `None`).
///
/// Effectively unlimited on 64-bit systems.