1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-31 13:07:46 +00:00

change static keyword to const keyword

This commit is contained in:
m11o 2023-04-24 23:38:45 +09:00
parent fd02bd13a1
commit 1cb0a673a0

View file

@ -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> {