Skip to content

Commit 21e6645

Browse files
committed
Make arena mod public
1 parent f2c9a5e commit 21e6645

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/arena.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//! Module containing the `Arena` and `Uninitialized` structs. For convenience the
2+
//! `Arena` is exported at the root of the crate.
3+
14
use std::mem::size_of;
25
use std::cell::Cell;
36

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ pub mod cell;
9696
pub mod map;
9797
pub mod set;
9898
pub mod list;
99-
mod arena;
99+
pub mod arena;
100100
mod bloom;
101101
mod impl_partial_eq;
102102
mod impl_debug;

0 commit comments

Comments
 (0)