mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-08-01 13:37:48 +00:00
change static keyword to const keyword
This commit is contained in:
parent
fd02bd13a1
commit
1cb0a673a0
1 changed files with 5 additions and 5 deletions
|
@ -30,12 +30,12 @@ use crate::number::PreciseNumber;
|
|||
const ABOUT: &str = help_about!("seq.md");
|
||||
const USAGE: &str = help_usage!("seq.md");
|
||||
|
||||
static OPT_SEPARATOR: &str = "separator";
|
||||
static OPT_TERMINATOR: &str = "terminator";
|
||||
static OPT_WIDTHS: &str = "widths";
|
||||
static OPT_FORMAT: &str = "format";
|
||||
const OPT_SEPARATOR: &str = "separator";
|
||||
const OPT_TERMINATOR: &str = "terminator";
|
||||
const OPT_WIDTHS: &str = "widths";
|
||||
const OPT_FORMAT: &str = "format";
|
||||
|
||||
static ARG_NUMBERS: &str = "numbers";
|
||||
const ARG_NUMBERS: &str = "numbers";
|
||||
|
||||
#[derive(Clone)]
|
||||
struct SeqOptions<'a> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue