Bump typos workflow to 1.29.4 (#14782)

Fix garbage name to snakecase

Supersedes #14779
This commit is contained in:
Stefan Holderbach 2025-01-08 15:11:47 +01:00 committed by GitHub
parent cc4d4acc6b
commit d894c8befe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

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

View file

@ -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())
} }