mirror of
https://github.com/nushell/nushell
synced 2025-01-13 05:38:57 +00:00
Bump typos workflow to 1.29.4
(#14782)
Fix garbage name to snakecase Supersedes #14779
This commit is contained in:
parent
cc4d4acc6b
commit
d894c8befe
2 changed files with 4 additions and 4 deletions
2
.github/workflows/typos.yml
vendored
2
.github/workflows/typos.yml
vendored
|
@ -10,4 +10,4 @@ jobs:
|
||||||
uses: actions/checkout@v4.1.7
|
uses: actions/checkout@v4.1.7
|
||||||
|
|
||||||
- name: Check spelling
|
- name: Check spelling
|
||||||
uses: crate-ci/typos@v1.28.4
|
uses: crate-ci/typos@v1.29.4
|
||||||
|
|
|
@ -128,12 +128,12 @@ impl Command for SeqDate {
|
||||||
let days: Option<Spanned<i64>> = call.get_flag(engine_state, stack, "days")?;
|
let days: Option<Spanned<i64>> = call.get_flag(engine_state, stack, "days")?;
|
||||||
let reverse = call.has_flag(engine_state, stack, "reverse")?;
|
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)),
|
Some(s) => Some(Value::string(s.item, s.span)),
|
||||||
_ => None,
|
_ => None,
|
||||||
};
|
};
|
||||||
|
|
||||||
let informat = match input_format {
|
let in_format = match input_format {
|
||||||
Some(s) => Some(Value::string(s.item, s.span)),
|
Some(s) => Some(Value::string(s.item, s.span)),
|
||||||
_ => None,
|
_ => None,
|
||||||
};
|
};
|
||||||
|
@ -161,7 +161,7 @@ impl Command for SeqDate {
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(run_seq_dates(
|
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())
|
.into_pipeline_data())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue