mirror of
https://github.com/nushell/nushell.git
synced 2025-07-01 07:00:37 +02:00
Bump typos workflow to 1.29.4
(#14782)
Fix garbage name to snakecase Supersedes #14779
This commit is contained in:
committed by
GitHub
parent
cc4d4acc6b
commit
d894c8befe
@ -128,12 +128,12 @@ impl Command for SeqDate {
|
||||
let days: Option<Spanned<i64>> = call.get_flag(engine_state, stack, "days")?;
|
||||
let reverse = call.has_flag(engine_state, stack, "reverse")?;
|
||||
|
||||
let outformat = match output_format {
|
||||
let out_format = match output_format {
|
||||
Some(s) => Some(Value::string(s.item, s.span)),
|
||||
_ => None,
|
||||
};
|
||||
|
||||
let informat = match input_format {
|
||||
let in_format = match input_format {
|
||||
Some(s) => Some(Value::string(s.item, s.span)),
|
||||
_ => None,
|
||||
};
|
||||
@ -161,7 +161,7 @@ impl Command for SeqDate {
|
||||
}
|
||||
|
||||
Ok(run_seq_dates(
|
||||
outformat, informat, begin, end, inc, day_count, rev, call.head,
|
||||
out_format, in_format, begin, end, inc, day_count, rev, call.head,
|
||||
)?
|
||||
.into_pipeline_data())
|
||||
}
|
||||
|
Reference in New Issue
Block a user