Fix internal module reexports (#9378)

# Description
`cargo +stable check` was complaining about ambiguous wildcard
reexports. Fixed by making the reexport of modules not pub as only the
explicitly named symbols are actually needed in the current state.


# User-Facing Changes
None
This commit is contained in:
Stefan Holderbach 2023-06-07 16:36:34 +02:00 committed by GitHub
parent 6fa05c12ff
commit 20b697f722
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
pub mod command;
mod command;
mod filesize;
pub use self::filesize::FileSize;

View File

@ -1,9 +1,9 @@
pub mod chars;
pub mod column;
pub mod command;
pub mod list;
pub mod row;
pub mod words;
mod chars;
mod column;
mod command;
mod list;
mod row;
mod words;
pub use chars::SubCommand as SplitChars;
pub use column::SubCommand as SplitColumn;