diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml index ecbd9b2134..50d8edbc79 100644 --- a/.github/workflows/typos.yml +++ b/.github/workflows/typos.yml @@ -10,4 +10,4 @@ jobs: uses: actions/checkout@v4.1.7 - name: Check spelling - uses: crate-ci/typos@v1.28.4 + uses: crate-ci/typos@v1.29.4 diff --git a/crates/nu-command/src/generators/seq_date.rs b/crates/nu-command/src/generators/seq_date.rs index 7369878d1d..4d378a73bb 100644 --- a/crates/nu-command/src/generators/seq_date.rs +++ b/crates/nu-command/src/generators/seq_date.rs @@ -128,12 +128,12 @@ impl Command for SeqDate { let days: Option> = 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()) }