mirror of
https://github.com/nushell/nushell.git
synced 2024-11-09 01:54:39 +01:00
change signature of enumerate
to any -> table
(#9822)
related to https://discord.com/channels/601130461678272522/1134054657086464072 # Description the `enumerate` command always returns a table but its signature is `any -> any` which can be confusing 😕 this PR changes the signature to `any -> table` i've double checked and the source of `enumerate` returns a list of records, a.k.a. a table 👌 # User-Facing Changes this shouldn't change anything apart from the help page of `enumerate` showing now ``` Input/output types: ╭───┬───────┬────────╮ │ # │ input │ output │ ├───┼───────┼────────┤ │ 0 │ any │ table │ ╰───┴───────┴────────╯ ``` instead of ``` Input/output types: ╭───┬───────┬────────╮ │ # │ input │ output │ ├───┼───────┼────────┤ │ 0 │ any │ any │ ╰───┴───────┴────────╯ ``` # Tests + Formatting - 🟢 `toolkit fmt` - 🟢 `toolkit clippy` - ⚫ `toolkit test` - ⚫ `toolkit test stdlib` # After Submitting
This commit is contained in:
parent
831d1da256
commit
aa08e81370
@ -23,7 +23,7 @@ impl Command for Enumerate {
|
||||
|
||||
fn signature(&self) -> nu_protocol::Signature {
|
||||
Signature::build("enumerate")
|
||||
.input_output_types(vec![(Type::Any, Type::Any)])
|
||||
.input_output_types(vec![(Type::Any, Type::Table(vec![]))])
|
||||
.category(Category::Filters)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user