mirror of
https://github.com/uutils/coreutils
synced 2024-12-14 15:22:38 +00:00
nl: use "const" instead of "static"
This commit is contained in:
parent
c32139784a
commit
d00134640b
1 changed files with 2 additions and 2 deletions
|
@ -18,8 +18,8 @@ use uucore::{format_usage, help_about, help_usage};
|
|||
|
||||
mod helper;
|
||||
|
||||
static ABOUT: &str = help_about!("nl.md");
|
||||
static USAGE: &str = help_usage!("nl.md");
|
||||
const ABOUT: &str = help_about!("nl.md");
|
||||
const USAGE: &str = help_usage!("nl.md");
|
||||
|
||||
// Settings store options used by nl to produce its output.
|
||||
pub struct Settings {
|
||||
|
|
Loading…
Reference in a new issue