Skip to content

Commit 4a5e362

Browse files
committed
fix
Signed-off-by: guoweikang <[email protected]>
1 parent ed4575e commit 4a5e362

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
mod linked_list;
55
mod raw_list;
6-
pub use linked_list::{List, Wrapper};
6+
pub use linked_list::List;
77
pub use raw_list::{GetLinks, Links, RawList};
88

99
#[macro_export(local_inner_macros)]

src/raw_list.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ impl<'a, G: GetLinks> Cursor<'a, G> {
357357
}
358358
}
359359

360-
pub(crate) struct CursorMut<'a, G: GetLinks> {
360+
pub struct CursorMut<'a, G: GetLinks> {
361361
cursor: CommonCursor<G>,
362362
list: &'a mut RawList<G>,
363363
}

0 commit comments

Comments
 (0)