reorder cals input_output_types (#15909)

This PR should close #15906

# User-Facing Changes
reorder `cal`s `input_output_types`, so that `String` is first in order.
This commit is contained in:
Raoul Kent 2025-06-06 22:28:12 +02:00 committed by GitHub
parent b886fd364c
commit e3124d3561
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,8 +47,8 @@ impl Command for Cal {
None,
)
.input_output_types(vec![
(Type::Nothing, Type::table()),
(Type::Nothing, Type::String),
(Type::Nothing, Type::table()),
])
.allow_variants_without_examples(true) // TODO: supply exhaustive examples
.category(Category::Generators)