forked from extern/nushell
aa08e81370
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 |
||
---|---|---|
.. | ||
src | ||
tests | ||
Cargo.toml | ||
LICENSE |