From e97a9549be45ffe6e8bbf61f3cf60fde2b0ae0a8 Mon Sep 17 00:00:00 2001 From: overlookmotel <557937+overlookmotel@users.noreply.github.com> Date: Tue, 10 Dec 2024 11:00:12 +0000 Subject: [PATCH] style(data_structures): line breaks (#7766) Style nit. Add line breaks. --- crates/oxc_data_structures/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/oxc_data_structures/src/lib.rs b/crates/oxc_data_structures/src/lib.rs index 518ca178a6ed2..2333671037d4a 100644 --- a/crates/oxc_data_structures/src/lib.rs +++ b/crates/oxc_data_structures/src/lib.rs @@ -1,4 +1,6 @@ //! Data structures used across other oxc crates. + #![warn(missing_docs)] + pub mod rope; pub mod stack;