From 59ee96c70d2aa2d1d24d364eebe9c711700e3155 Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Sun, 28 Apr 2024 05:52:05 -0400 Subject: [PATCH] fixes a rust-analyzer warning (#12694) # Description Minor change but fixes a few rust-analyzer warnings. # User-Facing Changes # Tests + Formatting # After Submitting --- crates/nu-path/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-path/src/lib.rs b/crates/nu-path/src/lib.rs index 93179e42a5..eb52962f03 100644 --- a/crates/nu-path/src/lib.rs +++ b/crates/nu-path/src/lib.rs @@ -1,5 +1,5 @@ pub mod dots; -mod expansions; +pub mod expansions; mod helpers; mod tilde; mod util;