Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: guoweikang <[email protected]>
  • Loading branch information
guoweikang committed Oct 24, 2024
1 parent ed4575e commit 4a5e362
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

mod linked_list;
mod raw_list;
pub use linked_list::{List, Wrapper};
pub use linked_list::List;
pub use raw_list::{GetLinks, Links, RawList};

#[macro_export(local_inner_macros)]
Expand Down
2 changes: 1 addition & 1 deletion src/raw_list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ impl<'a, G: GetLinks> Cursor<'a, G> {
}
}

pub(crate) struct CursorMut<'a, G: GetLinks> {
pub struct CursorMut<'a, G: GetLinks> {
cursor: CommonCursor<G>,
list: &'a mut RawList<G>,
}
Expand Down

0 comments on commit 4a5e362

Please sign in to comment.