mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-09-15 19:36:16 +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;
|
mod helper;
|
||||||
|
|
||||||
static ABOUT: &str = help_about!("nl.md");
|
const ABOUT: &str = help_about!("nl.md");
|
||||||
static USAGE: &str = help_usage!("nl.md");
|
const USAGE: &str = help_usage!("nl.md");
|
||||||
|
|
||||||
// Settings store options used by nl to produce its output.
|
// Settings store options used by nl to produce its output.
|
||||||
pub struct Settings {
|
pub struct Settings {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue