From 427611122229b08cb3f8f74ac318a36dceb82f0f Mon Sep 17 00:00:00 2001 From: Alexander Kunde Date: Thu, 2 Mar 2023 18:10:53 +0100 Subject: [PATCH] change ABOUT from static to const --- src/uu/wc/src/wc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uu/wc/src/wc.rs b/src/uu/wc/src/wc.rs index 21c4643c6..c1f4a2db1 100644 --- a/src/uu/wc/src/wc.rs +++ b/src/uu/wc/src/wc.rs @@ -98,7 +98,7 @@ impl Settings { } } -static ABOUT: &str = help_about!("wc.md"); +const ABOUT: &str = help_about!("wc.md"); const USAGE: &str = help_usage!("wc.md"); pub mod options {