From 5803d3b6836778756023b06ca16d1d20849277a8 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Sun, 24 Mar 2024 16:09:15 +0100 Subject: [PATCH] comm: remove "comm" from error msg --- src/uu/comm/src/comm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uu/comm/src/comm.rs b/src/uu/comm/src/comm.rs index ee15a070e..f83717292 100644 --- a/src/uu/comm/src/comm.rs +++ b/src/uu/comm/src/comm.rs @@ -160,7 +160,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> { // Note: This intentionally deviate from the GNU error message by inserting the word "conflicting". return Err(USimpleError::new( 1, - "comm: multiple conflicting output delimiters specified", + "multiple conflicting output delimiters specified", )); } }