From dd70c59887d720c301d15db8279c7ef3f85f7d11 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Sun, 9 Jun 2024 02:58:27 +0200 Subject: [PATCH] Enhance --- src/config.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/config.rs b/src/config.rs index c2d6dea70d..34b72f3830 100644 --- a/src/config.rs +++ b/src/config.rs @@ -703,8 +703,6 @@ impl Config { } else if matches.get_flag(cmd::MAN) { Subcommand::Man } else if let Some(path) = matches.get_many::(cmd::SHOW) { - // if path is a single string and contains spaces, split it - Subcommand::Show { path: Self::parse_module_path(path)?, }