From 8cc3c5a312bc8179d0363f8b2c6848deef84944b Mon Sep 17 00:00:00 2001 From: Nithin Muthukumar Date: Tue, 19 Mar 2024 17:08:13 -0400 Subject: [PATCH] remove debug --- src/parse_man/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parse_man/error.rs b/src/parse_man/error.rs index db2c62d..699725e 100644 --- a/src/parse_man/error.rs +++ b/src/parse_man/error.rs @@ -7,7 +7,7 @@ pub enum Error { #[error(transparent)] Io(#[from] std::io::Error), - #[error("Unsupported manpage format for {path:?}")] + #[error("Unsupported manpage format for {path}")] UnsupportedFormat { path: PathBuf }, #[error("Could not find manpage for {cmd_name}")]