From fb897f6c3ae209140861bd01ff9784b61e62ec0d Mon Sep 17 00:00:00 2001 From: overlookmotel <557937+overlookmotel@users.noreply.github.com> Date: Sat, 14 Dec 2024 13:16:49 +0000 Subject: [PATCH] style(data_structures): add line break (#7882) --- crates/oxc_data_structures/src/stack/sparse.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/oxc_data_structures/src/stack/sparse.rs b/crates/oxc_data_structures/src/stack/sparse.rs index 92e0f1bbc744a..4294c4442948f 100644 --- a/crates/oxc_data_structures/src/stack/sparse.rs +++ b/crates/oxc_data_structures/src/stack/sparse.rs @@ -45,6 +45,7 @@ impl SparseStack { /// /// [`MAX_TOTAL_CAPACITY`]: Self::MAX_TOTAL_CAPACITY pub const MAX_FILLED_CAPACITY: usize = Stack::::MAX_CAPACITY; + /// Maximum capacity for entries (either `Some` or `None`). /// /// Effectively unlimited on 64-bit systems.