From 01671729b7af559735defa6696d5428e2a430a5e Mon Sep 17 00:00:00 2001 From: Boshen Date: Sun, 22 Oct 2023 11:23:36 +0800 Subject: [PATCH] chore(span,index): update documentation --- crates/oxc_index/src/lib.rs | 2 +- crates/oxc_span/src/lib.rs | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/crates/oxc_index/src/lib.rs b/crates/oxc_index/src/lib.rs index b03ed1e50..10e90965c 100644 --- a/crates/oxc_index/src/lib.rs +++ b/crates/oxc_index/src/lib.rs @@ -1,6 +1,6 @@ //! Indexing Utilities //! -//! +//! pub use index_vec::{define_index_type, index_vec, IndexSlice, IndexVec}; pub use static_assertions::*; diff --git a/crates/oxc_span/src/lib.rs b/crates/oxc_span/src/lib.rs index cc3e9cdf3..4dfafeb7e 100644 --- a/crates/oxc_span/src/lib.rs +++ b/crates/oxc_span/src/lib.rs @@ -1,3 +1,7 @@ +//! Source positions and related helper functions. +//! +//! + mod atom; mod source_type; mod span;