This commit is contained in:
Zhenping Zhao 2024-11-21 01:18:49 -08:00
parent 4f70bb61a3
commit e6b677392a
2 changed files with 2 additions and 2 deletions

View File

@ -14,6 +14,6 @@ pub use components::components;
pub use expansions::{canonicalize_with, expand_path_with, expand_to_real_path, locate_in_dirs};
pub use helpers::{cache_dir, data_dir, home_dir, nu_config_dir};
pub use path::*;
pub use pwd_per_drive::pwd_per_drive_singleton::{set_pwd_per_drive, expand_pwd_per_drive};
pub use pwd_per_drive::pwd_per_drive_singleton::{expand_pwd_per_drive, set_pwd_per_drive};
pub use tilde::expand_tilde;
pub use trailing_slash::{has_trailing_slash, strip_trailing_slash};

View File

@ -235,7 +235,7 @@ mod tests {
///
/// ```
/// use std::path::{Path, PathBuf};
/// use nu_path::{set_pwd_per_drive, expand_pwd_per_drive};
/// use nu_path::{expand_pwd_per_drive, set_pwd_per_drive};
///
/// //assert!(false); // Comment out to verify really tested
/// if cfg!(windows) {