From b5ec9e0360a9a971ac016b13d78f53a45a1fc7f0 Mon Sep 17 00:00:00 2001 From: JT <547158+jntrnr@users.noreply.github.com> Date: Sun, 3 Oct 2021 06:16:02 +1300 Subject: [PATCH] Update mod.rs --- crates/nu-command/src/core_commands/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/nu-command/src/core_commands/mod.rs b/crates/nu-command/src/core_commands/mod.rs index 384ed11e8c..3472f4d8b3 100644 --- a/crates/nu-command/src/core_commands/mod.rs +++ b/crates/nu-command/src/core_commands/mod.rs @@ -2,8 +2,8 @@ mod alias; mod def; mod do_; mod export_def; -mod hide; mod help; +mod hide; mod if_; mod let_; mod module; @@ -13,8 +13,8 @@ pub use alias::Alias; pub use def::Def; pub use do_::Do; pub use export_def::ExportDef; -pub use hide::Hide; pub use help::Help; +pub use hide::Hide; pub use if_::If; pub use let_::Let; pub use module::Module;